14 lines
341 B
Go
14 lines
341 B
Go
package apiproto
|
|
|
|
type UpdateWechatInfoReq struct {
|
|
AppId string `json:"appId"`
|
|
WechatAppSecret string `json:"wechatAppSecret"`
|
|
WechatAppId string `json:"wechatAppId"`
|
|
WechatPath string `json:"wechatPath"`
|
|
WechatSize string `json:"wechatSize"`
|
|
}
|
|
|
|
type DeleteWechatInfoReq struct {
|
|
AppId string `json:"appId"`
|
|
}
|