service/api/message/request/ZTHY10000001Req.go

24 lines
595 B
Go

package request
// 模板短信发送报文
type ZTHY10000001Req struct {
Username string `json:"username"`
Password string `json:"password"`
TKey string `json:"tKey"`
Signature string `json:"signature"`
TpId string `json:"tpId"`
Ext string `json:"ext"`
Time string `json:"time"`
Extend string `json:"extend"`
Records []*Record `json:"records"`
}
type Record struct {
Mobile string `json:"mobile"`
TpContent *ValidCodeRecord `json:"tpContent"`
}
type ValidCodeRecord struct {
ValidCode string `json:"valid_code"`
}