master
huanghai 5 years ago
parent 63ba0bec51
commit b76ee17fc0

@ -1,13 +0,0 @@
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)"`
}

@ -1,10 +0,0 @@
package models
type TBaseTeacherChargeWork struct {
Id string `xorm:"not null pk comment('主键') CHAR(36)"`
PersonId string `xorm:"not null default '''' comment('人员ID') index CHAR(18)"`
BureauId string `xorm:"not null default '''' comment('单位ID') index CHAR(18)"`
JobTitleId int32 `xorm:"not null default 0 comment('职务ID') INT(11)"`
ChargeWorkId int32 `xorm:"not null default 0 comment('分管工作ID') INT(11)"`
BUse int32 `xorm:"not null default 1 comment('是否启用 0未启用 1启用') TINYINT(1)"`
}

@ -1,19 +0,0 @@
package models
import (
"time"
)
type TDataexDatain struct {
Id string `xorm:"not null pk comment('ID') VARCHAR(36)"`
SystemId string `xorm:"not null comment('数据提供系统ID') VARCHAR(36)"`
DatasourceId string `xorm:"not null comment('数据源ID') VARCHAR(36)"`
OrgId string `xorm:"not null comment('数据所属机构ID') VARCHAR(36)"`
DataId string `xorm:"not null comment('数据ID') VARCHAR(36)"`
DataContent string `xorm:"default 'NULL' comment('数据内容【Json格式】') VARCHAR"`
FileUri string `xorm:"default 'NULL' comment('文件地址【文件交换】') VARCHAR(500)"`
ChangeTime time.Time `xorm:"default 'NULL' comment('最近修改时间') DATETIME"`
DeleteTime time.Time `xorm:"default 'NULL' comment('删除时间') DATETIME"`
DeleteFlag int32 `xorm:"not null default -1 comment('删除标志【默认-11删除-1正常】') INT(11)"`
EnableFlag int32 `xorm:"not null default 1 comment('启用标志【默认11启用-1禁用】') INT(11)"`
}

@ -1,20 +0,0 @@
package models
import (
"time"
)
type TDataexDataout struct {
Id string `xorm:"not null pk VARCHAR(36)"`
SystemId string `xorm:"not null comment('数据提供系统ID') VARCHAR(36)"`
ConsumeSystemid string `xorm:"default ''NULL'' comment('数据使用系统ID') VARCHAR(36)"`
DatasourceId string `xorm:"not null comment('数据源ID') VARCHAR(36)"`
OrgId string `xorm:"not null comment('数据所属机构ID') VARCHAR(36)"`
DataId string `xorm:"not null comment('数据ID') VARCHAR(36)"`
DataContent string `xorm:"default 'NULL' comment('数据内容【Json格式】') VARCHAR"`
FileUri string `xorm:"default 'NULL' comment('文件地址【文件交换】') VARCHAR(500)"`
ChangeTime time.Time `xorm:"default 'NULL' comment('最近修改时间') DATETIME"`
DeleteTime time.Time `xorm:"default 'NULL' comment('删除时间') DATETIME"`
DeleteFlag int32 `xorm:"not null default -1 comment('删除标志【默认-11删除-1正常】') INT(11)"`
EnableFlag int32 `xorm:"not null default 1 comment('启用标志【默认11启用-1禁用】') INT(11)"`
}
Loading…
Cancel
Save