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
import (
"time"
)
type TDataexLinksystem struct {
Id string ` xorm:"not null pk comment('系统ID') VARCHAR(36)" `
SystemName string ` xorm:"not null comment('系统名称') VARCHAR(100)" `
SystemCode string ` xorm:"not null default ''NULL'' comment('系统编码【可读的缩写, 平台内统一使用code】') VARCHAR(36)" `
SystemType int32 ` xorm:"not null comment('系统类型【1: 基础数据、2: 管理平台、3: 资源平台、4: 学科工具】') INT(11)" `
SystemKey string ` xorm:"not null comment('系统密钥【必须保密】') VARCHAR(36)" `
CollectFlag int32 ` xorm:"not null default -1 comment('数据汇集标志【默认-1, 1: 启动汇集, -1: 关闭汇集】') INT(11)" `
ProviderName string ` xorm:"default ''NULL'' comment('厂商名称') VARCHAR(10)" `
AuthTime time . Time ` xorm:"default 'NULL' comment('系统鉴权时间') DATETIME" `
AuthToken string ` xorm:"default 'NULL' comment('系统鉴权票据') VARCHAR(100)" `
CreateTime time . Time ` xorm:"default 'NULL' comment('建立时间') DATETIME" `
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)" `
}