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 TBasePosition struct {
Id string ` xorm:"not null pk comment('主键ID') CHAR(36)" `
NodeName string ` xorm:"not null comment('职务名称') VARCHAR(100)" `
ParentId string ` xorm:"not null comment('上级节点ID') CHAR(36)" `
AreaLevel int32 ` xorm:"not null comment('区域级别 -1: 无意义 1: 市级 2: 区级') INT(11)" `
OrgType int32 ` xorm:"not null comment('单位类型 1: 教育局 2: 学校 7: 教辅单位') INT(11)" `
Xxbxlxm string ` xorm:"not null comment('学校办学类型(学校专有属性)有字典') CHAR(3)" `
MaintainId string ` xorm:"not null default ''011'' comment('第一位为增加 1: 有 0: 无
第二位为修改 1: 有 0: 无
第三位为删除 1: 有 0: 无') CHAR(3)" `
PostionFlag int32 ` xorm:"not null default 1 comment('是否为职务 1: 是职务 0: 职务关系节点') INT(11)" `
BUse int32 ` xorm:"not null default 1 comment('是否可用 1: 可用 -2: 不可用') INT(11)" `
SortId int32 ` xorm:"not null default 1 comment('节点内部排序号') INT(11)" `
}