package datamodel import "time" type RepoObject struct { RepoId int64 `json:"repoId" xorm:"'repo_id' bigint pk comment('主键ID') "` ModelId int64 `json:"modelId" xorm:"'model_id' bigint pk comment('主键ID') "` ObjectId int64 `json:"objectId" xorm:"'object_id' bigint pk comment('主键ID') "` CreatedBy int64 `json:"createdBy" xorm:"'created_by'"` CreatedAt time.Time `json:"createdAt" xorm:"'created_at'"` UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by'"` UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at'"` DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'"` DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by'"` DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at'"` } func (t *RepoObject) TableName() string { return "repo_object" }