| 1234567891011121314151617181920 |
- package viewmodels
- // OcInfo
- type OcInfo struct {
- OcId int64 `json:"ocId" form:"ocTypeId" xorm:"'oc_id' bigint pk comment('主键ID') " `
- OcName string `json:"ocName" form:"ocName" xorm:"'oc_name' varchar(127) comment('ENT类型名称') " `
- OcTypeId int64 `json:"ocTypeId" form:"ocTypeId" xorm:"'oc_type_id' bigint comment('Type ID') " `
- RootId int64 `json:"rootId" form:"rootId" xorm:"'root_id' bigint comment('Root ID') " `
- ParentId int64 `json:"parentId" form:"parentId" xorm:"'parent_id' bigint comment('Parent ID') " `
- AdminId int64 `json:"adminId" form:"adminId" xorm:"'admin_id' bigint comment('Admin ID') " `
- AdminName string `json:"adminName" form:"adminName" xorm:"'admin_name' varchar(127) comment('Admin Name') " `
- GroupId int64 `json:"groupId" form:"groupId" xorm:"'group_id' bigint comment('Root Group Id')" `
- IfLic int `json:"ifLic" form:"ifLic" xorm:"'if_lic' int comment('Admin ID') " `
- NodeLeft int `json:"nodeLeft" form:"nodeLeft" xorm:"'node_left' int comment('Admin ID') " `
- NodeRight int `json:"nodeRight" form:"nodeRight" xorm:"'node_right' int comment('Admin ID') " `
- IsLeaf int `json:"isLeaf" form:"isLeaf" xorm:"'is_leaf' int comment('Admin ID') " `
- NodeLevel int `json:"nodeLevel" form:"nodeLevel" xorm:"'node_level' int comment('Admin ID') " `
- Status int `json:"status" form:"status" xorm:"'status' int comment('OC Status') " `
- }
|