diff --git a/dsBaseRpc/models/t_base_charge_work.go b/dsBaseRpc/models/t_base_charge_work.go deleted file mode 100644 index b9f1cd47..00000000 --- a/dsBaseRpc/models/t_base_charge_work.go +++ /dev/null @@ -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)"` -} diff --git a/dsBaseRpc/models/t_base_teacher_charge_work.go b/dsBaseRpc/models/t_base_teacher_charge_work.go deleted file mode 100644 index 4a367085..00000000 --- a/dsBaseRpc/models/t_base_teacher_charge_work.go +++ /dev/null @@ -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)"` -} diff --git a/dsBaseRpc/models/t_dataex_datain.go b/dsBaseRpc/models/t_dataex_datain.go deleted file mode 100644 index 33600161..00000000 --- a/dsBaseRpc/models/t_dataex_datain.go +++ /dev/null @@ -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('删除标志【默认-1,1:删除,-1:正常】') INT(11)"` - EnableFlag int32 `xorm:"not null default 1 comment('启用标志【默认1,1:启用,-1:禁用】') INT(11)"` -} diff --git a/dsBaseRpc/models/t_dataex_dataout.go b/dsBaseRpc/models/t_dataex_dataout.go deleted file mode 100644 index 169d110d..00000000 --- a/dsBaseRpc/models/t_dataex_dataout.go +++ /dev/null @@ -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('删除标志【默认-1,1:删除,-1:正常】') INT(11)"` - EnableFlag int32 `xorm:"not null default 1 comment('启用标志【默认1,1:启用,-1:禁用】') INT(11)"` -}