package models type TBaseChargeWork struct { Id string `xorm:"not null pk comment('主键') CHAR(36)"` Code string `xorm:"not null comment('编码') CHAR(10)"` Name string `xorm:"not null comment('分管工作名称') VARCHAR(50)"` ParentId string `xorm:"not null comment('上级节点') CHAR(36)"` LevelId int32 `xorm:"not null comment('1:虚根节点 2:单位等级 3:单位类型 4:分管工作') INT(11)"` BureauLevel int32 `xorm:"not null comment('单位等级 1:市级 2:区级') INT(11)"` OrgType int32 `xorm:"not null comment('单位类型 1:教育局 2:学校 7:教辅单位') INT(11)"` BUse int32 `xorm:"not null comment('是否启用') TINYINT(1)"` SortId int32 `xorm:"not null comment('排序号') INT(11)"` }