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.
|
- package md
-
- type AppletApplicationListReq struct {
- Limit string `json:"limit"`
- Page string `json:"page" `
- Name string `json:"name"`
- CooperateState string `json:"cooperate_state" example:"合作状态"`
- Platform string `json:"platform"`
- }
- type AppletApplicationListRes struct {
- List []AppletApplicationListData `json:"list"`
- Total int64 `json:"total"`
- State []SelectData `json:"state"`
- CooperateState []SelectData `json:"cooperate_state"`
- Platform []SelectData `json:"platform"`
- }
- type AppletApplicationListData struct {
- Id string `json:"id" example:"id"`
- Name string `json:"name" example:"应用名称"`
- Platform string `json:"platform" example:"平台"`
- Memo string `json:"memo" example:"备注"`
- Logo string `json:"logo" example:"logo"`
- AppId string `json:"app_id" example:"小程序appid"`
- OriginalId string `json:"original_id" example:"小程序id"`
- State string `json:"state" example:"应用状态 state=3 才能再次编辑"`
- CooperateState string `json:"cooperate_state" example:"合作状态"`
- }
- type AppletApplicationSaveReq struct {
- Id string `json:"id" example:"id"`
- Name string `json:"name" example:"应用名称"`
- Platform string `json:"platform" example:"平台 微信小程序:wx_applet"`
- Logo string `json:"logo" example:"logo"`
- AppId string `json:"app_id" example:"小程序appid"`
- OriginalId string `json:"original_id" example:"小程序id"`
- }
|