service/api/message/response/ZTHY10000001Resp.go

12 lines
321 B
Go

package response
import "service/api/message/request"
type ZTHY10000001Resp struct {
Code int `json:"code"`
Msg string `json:"msg"`
MsgId string `json:"msgId"`
TpId string `json:"tpId"`
InvalidList []*request.Record `json:"invalidList"`
}