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.
dsMin/dsBaseRpc/models/t_base_charge_work.go

14 lines
801 B

This file contains ambiguous Unicode characters!

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)"`
}