package MySwagger type LinksystemSwag struct { SystemName string `json:"system_name" xorm:"not null comment('系统名称') VARCHAR(100)" example:"F38BD0DB-0142-4356-8F2B-623813FC2578"` SystemCode string `json:"system_code" xorm:"not null default ''NULL'' comment('系统编码【可读的缩写,平台内统一使用code】') VARCHAR(36)" example:"BASE_JAVA"` SystemType int `json:"system_type" xorm:"not null comment('系统类型【1:基础数据、2:管理平台、3:资源平台、4:学科工具】') INT(11)" example:"1"` SystemKey string `json:"system_key" xorm:"not null comment('系统密钥【必须保密】') VARCHAR(36)" example:"8971966b-ac44-11ea-bd48-f48e38f73cf7"` CollectFlag int `json:"collect_flag" xorm:"not null default -1 comment('数据汇集标志【默认-1,1:启动汇集,-1:关闭汇集】') INT(11)" example:"1"` ProviderName string `json:"provider_name" xorm:"default ''NULL'' comment('厂商名称') VARCHAR(10)" example:"东师理想"` DeleteFlag int `json:"delete_flag" xorm:"not null default -1 comment('删除标志【默认-1,1:删除,-1:正常】') INT(11)" example:"1"` EnableFlag int `json:"enable_flag" xorm:"not null default 1 comment('启用标志【默认1,1:启用,-1:禁用】') INT(11)" example:"1"` Page int `json:"page" example:"1"` }