service/api/message/request/ZTHY10000001Req.go

24 lines
595 B
Go
Raw Normal View History

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