package datamodel import "time" type DocCat struct { OcId int64 `json:"ocId" xorm:"'oc_id' bigint pk comment('OC ID') "` DocCatId int64 `json:"docCatId" xorm:"'doc_cat_id' bigint pk comment('DOC CAT ID') "` DocCatTitle string `json:"docCatTitle" xorm:"'doc_cat_title' varchar(127) comment('群组类型名称') "` DocCatDesc string `json:"docCatDesc" xorm:"'doc_cat_desc' varchar(127) comment('描述') "` IsFixed int64 `json:"isFixed" xorm:"'is_fixed' int comment('是否可修改') "` 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 *DocCat) TableName() string { return "doc_cat" }