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