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.
20 lines
519 B
20 lines
519 B
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type App struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
Name string // 应用名称
|
|
Key string // 应用标识
|
|
Path string // 更新地址
|
|
Content string // 版本描述
|
|
AndroidVersion uint // 安卓版本号
|
|
AndroidVersionMin uint // 安卓最低版本号
|
|
IphoneVersion uint // 苹果版本号
|
|
IphoneVersionMax uint // 苹果最低版本号
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|