You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.1 KiB
Go
53 lines
2.1 KiB
Go
package common
|
|
|
|
type RespGetApkInfo struct {
|
|
IsSuccess bool `json:"isSuccess"`
|
|
Data []ApkInfo `json:"data"`
|
|
PageIndex int `json:"pageIndex"`
|
|
PageSize int `json:"pageSize"`
|
|
Total int `json:"total"`
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
type ApkInfo struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
PkgName string `json:"pkg_name"`
|
|
Version string `json:"version"`
|
|
Pf string `json:"pf"`
|
|
Title string `json:"title"`
|
|
Status int `json:"status"`
|
|
ChangeLog interface{} `json:"change_log"`
|
|
PromotionTitle interface{} `json:"promotion_title"`
|
|
PromotionBanner interface{} `json:"promotion_banner"`
|
|
Ctime int `json:"ctime"`
|
|
Utime int `json:"utime"`
|
|
BuildNum int `json:"build_num"`
|
|
AttachmentOld string `json:"attachment_old"`
|
|
AppLog interface{} `json:"app_log"`
|
|
Branch string `json:"branch"`
|
|
VirusLink string `json:"virus_link"`
|
|
Size string `json:"size"`
|
|
SizeLink string `json:"size_link"`
|
|
DefaultPub interface{} `json:"default_pub"`
|
|
Rabit interface{} `json:"rabit"`
|
|
ButtonAction int `json:"button_action"`
|
|
ButtonText string `json:"button_text"`
|
|
Offset int `json:"offset"`
|
|
Len int `json:"len"`
|
|
Md5 string `json:"md5"`
|
|
PkgType string `json:"pkg_type"`
|
|
PkgSubType string `json:"pkg_sub_type"`
|
|
HostVer interface{} `json:"host_ver"`
|
|
LastHostVer interface{} `json:"last_host_ver"`
|
|
SignVer int `json:"sign_ver"`
|
|
IsLite int `json:"is_lite"`
|
|
Attachment string `json:"attachment"`
|
|
VersionCode string `json:"version_code"`
|
|
Anm string `json:"anm"`
|
|
Extra string `json:"extra"`
|
|
OriginalApk string `json:"original_apk"`
|
|
Abi string `json:"abi"`
|
|
IsPressureTag int `json:"is_pressure_tag"`
|
|
}
|