21 lines
1018 B
Go
21 lines
1018 B
Go
// 自动生成模板SysVersion
|
|
package system
|
|
|
|
import (
|
|
"git.echol.cn/loser/lckt/global"
|
|
)
|
|
|
|
// 版本管理 结构体 SysVersion
|
|
type SysVersion struct {
|
|
global.GVA_MODEL
|
|
VersionName *string `json:"versionName" form:"versionName" gorm:"comment:版本名称;column:version_name;size:255;" binding:"required"` //版本名称
|
|
VersionCode *string `json:"versionCode" form:"versionCode" gorm:"comment:版本号;column:version_code;size:100;" binding:"required"` //版本号
|
|
Description *string `json:"description" form:"description" gorm:"comment:版本描述;column:description;size:500;"` //版本描述
|
|
VersionData *string `json:"versionData" form:"versionData" gorm:"comment:版本数据JSON;column:version_data;type:longtext;postgres:type:text;sqlite:type:text;"` //版本数据
|
|
}
|
|
|
|
// TableName 版本管理 SysVersion自定义表名 sys_versions
|
|
func (SysVersion) TableName() string {
|
|
return "sys_versions"
|
|
}
|