53 lines
1.6 KiB
Go
53 lines
1.6 KiB
Go
package apiproto
|
|
|
|
type UpdateTrialAppPathReq struct {
|
|
TraceId string `json:"traceId"`
|
|
PathAndQuery string `json:"pathAndQuery"`
|
|
}
|
|
|
|
type GetBuildAppInfoReq struct {
|
|
Type string `json:"type"`
|
|
CodeId string `json:"codeId"`
|
|
}
|
|
|
|
type ManageReleaseInfo struct {
|
|
AppId string `json:"appId"`
|
|
Version string `json:"version"`
|
|
VersionDescription string `json:"versionDescription"`
|
|
CreateBy string `json:"createBy"`
|
|
CreateAt int64 `json:"createAt"`
|
|
}
|
|
type ManageTrialInfo struct {
|
|
CodeId string `json:"codeId"`
|
|
Version string `json:"version"`
|
|
VersionDescription string `json:"versionDescription"`
|
|
CreateBy string `json:"createBy"`
|
|
CreateAt int64 `json:"createAt"`
|
|
QrcodeSign string `json:"qrcodeSign"`
|
|
}
|
|
type ManageDevInfo struct {
|
|
List []ManageDevInfoItem `json:"list"`
|
|
Total int `json:"total"`
|
|
}
|
|
type ManageDevInfoItem struct {
|
|
CodeId string `json:"codeId"`
|
|
Version string `json:"version"`
|
|
VersionDescription string `json:"versionDescription"`
|
|
CreateBy string `json:"createBy"`
|
|
CreateAt int64 `json:"createAt"`
|
|
QrcodeSign string `json:"qrcodeSign"`
|
|
}
|
|
|
|
type GetManageAppVerListRspData struct {
|
|
ReleaseInfo *ManageReleaseInfo `json:"releaseInfo"`
|
|
TrialInfo *ManageTrialInfo `json:"trialInfo"`
|
|
DevInfo *ManageDevInfo `json:"devInfo"`
|
|
ApiServer string `json:"apiServer"`
|
|
}
|
|
|
|
type GetManageAppListRspDataItem struct {
|
|
AppId string `json:"appId"`
|
|
Logo string `json:"logo"`
|
|
Name string `json:"name"`
|
|
}
|