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.

13 lines
1.4 KiB

This file contains ambiguous Unicode characters!

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 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('数据汇集标志【默认-11启动汇集-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('删除标志【默认-11删除-1正常】') INT(11)" example:"1"`
EnableFlag int `json:"enable_flag" xorm:"not null default 1 comment('启用标志【默认11启用-1禁用】') INT(11)" example:"1"`
Page int `json:"page" example:"1"`
}