This commit is contained in:
小猿
2022-07-14 14:53:06 +08:00
parent b74d32acdb
commit db13961e29

View File

@@ -2,8 +2,8 @@ package dto
// SmsSendMessageReq 发送短信请求对象
type SmsSendMessageReq struct {
BusinessNo string `json:"businessNo" comment:"服务编号"`
TemplateNo string `json:"templateNo" comment:"模版编号"`
Phones []string `json:"phones" comment:"手机号集合"`
Params []string `json:"params" comment:"参数列表"`
BusinessNo string `json:"businessNo" form:"businessNo" comment:"服务编号"`
TemplateNo string `json:"templateNo" form:"templateNo" comment:"模版编号"`
Phones []string `json:"phones" form:"phones" comment:"手机号集合"`
Params []string `json:"params" form:"params" comment:"参数列表"`
}