You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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)" `
}