package model import "time" type Base struct { OrgID string `gorm:"column:org_id;type:varchar;primaryKey;comment:组织ID"` ID string `gorm:"column:id;type:varchar;primaryKey;comment:ID"` CreatedAt time.Time `gorm:"column:created_at;comment:创建时间"` UpdatedAt time.Time `gorm:"column:updated_at;comment:更新时间"` }