27 lines
1.7 KiB
Go
27 lines
1.7 KiB
Go
package model
|
|
|
|
import "time"
|
|
|
|
// PrintEdition 版本控制
|
|
type PrintEdition struct {
|
|
ID int `orm:"column(id)" json:"id" db:"id"`
|
|
CreatedAt time.Time `orm:"type(datetime)" json:"created_at" db:"created_at"` // 创建时间
|
|
UpdatedAt time.Time `orm:"type(datetime)" json:"updated_at" db:"updated_at"` // 更新时间
|
|
EditionNo string `orm:"type(varchar);size(64)" json:"edition_no" db:"edition_no"` // 版本号
|
|
EditionMsg string `orm:"type(text)" json:"edition_msg" db:"edition_msg"` // 更新说明
|
|
IsHotBuild int `orm:"type(tinyint)" json:"is_hot_build" db:"is_hot_build"` // 是否热更新
|
|
IsForce int `orm:"type(tinyint)" json:"is_force" db:"is_force"` // 是否强制更新
|
|
APKUrl string `orm:"column(apk_url);type(varchar);size(255)" json:"apk_url" db:"apk_url"` // apk下载地址
|
|
HotUrl string `orm:"type(varchar);size(255)" json:"hot_url" db:"hot_url"` // 热更下载地址
|
|
}
|
|
|
|
// PrintNotice 包含广告和通知消息
|
|
type PrintNotice struct {
|
|
ID int `orm:"column(id)" json:"id" db:"id"`
|
|
CreatedAt time.Time `orm:"type(datetime)" json:"created_at" db:"created_at"` // 创建时间
|
|
UpdatedAt time.Time `orm:"type(datetime)" json:"updated_at" db:"updated_at"` // 更新时间
|
|
NoticeType int `orm:"type(int)" json:"notice_type" db:"notice_type"` // 类型(1-广告/2-通知)
|
|
Msg string `orm:"type(text)" json:"msg" db:"msg"` // 内容(广告就是图片,通知消息就是文字)
|
|
Link string `orm:"type(varchar);size(255)" json:"link" db:"link"` // 跳转地址
|
|
}
|