12345678910111213141516171819202122 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type MessageDeleteReq struct {
- Id string `form:"id"`
- AppId string `form:"appId"`
- }
- type Response struct {
- Code int64 `json:"code"`
- Message string `json:"message"`
- }
- type MessageDetailReq struct {
- Id int64 `form:"id"`
- }
- type MessageDetailResp struct {
- Code int64 `json:"code"`
- Message string `json:"message"`
- Data map[string]interface{} `json:"data"`
- }
|