service/api/message/response/ZTHY10000001Resp.go

12 lines
321 B
Go
Raw Permalink Normal View History

2024-09-25 13:13:35 +08:00
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"`
}