12 lines
321 B
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"`
|
||
|
}
|