Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct { DB *gorm.DB // 数据库连接 Type map[int]string // APP说明 1-默认 Dervice map[int]string // APP所属平台 1-安卓 2-IOS 3-华为 4-微信小程序 TableName string // 表名 }
配置项
type Version ¶
type Version struct { Id uint `gorm:"column:id;type:int unsigned;primary_key;autoIncrement;not null;comment:主键ID" form:"id" json:"id"` // 主键ID Type int `gorm:"column:type;type:int;comment:所属APP" form:"type" json:"type"` // 所属APP Dervice int `gorm:"column:dervice;type:int;comment:所属设备端" form:"dervice" json:"dervice"` // 所属设备端 ClientVersion string `` // 客户端的版本号 /* 128-byte string literal not displayed */ ClientNum uint `` // 客户端内部版本号,随每次发布递增 /* 144-byte string literal not displayed */ UpdateNote string `gorm:"column:update_note;type:text;not null;comment:更新说明" form:"update_note" json:"update_note"` // 更新说明 AppLink string `gorm:"column:app_link;type:varchar(255);not null;comment:app的下载地址" form:"app_link" json:"app_link"` // app的下载地址 MinVersion string `gorm:"column:min_version;type:varchar(20);comment:最小更新版本号" form:"min_version" json:"min_version"` // 最小更新版本号 MinNum uint `gorm:"column:min_num;type:int unsigned;comment:最小客户端内部版本号" form:"min_num" json:"min_num"` // 最小客户端内部版本号 Ext string `gorm:"column:ext;type:text;comment:该版本对应的附加属性配置,JSON存储" form:"ext" json:"ext"` // 该版本对应的附加属性配置,JSON存储 CreatedAt string `gorm:"column:created_at;type:datetime;comment:创建时间" form:"created_at" json:"created_at"` // 创建时间 UpdatedAt string `gorm:"column:updated_at;type:datetime;comment:最后更新时间" form:"updated_at" json:"updated_at"` // 最后更新时间 HasUpdate bool `gorm:"-" json:"has_update" form:"-"` // 是否需要更新 HasForce bool `gorm:"-" json:"has_force" form:"-"` // 是否强制更新 }
APP版本
Click to show internal directories.
Click to hide internal directories.