emoticon_api/Infrastructure/Kuaidi100/Common/Request/Sms/SendSmsReq.cs
2023-10-20 21:58:42 +08:00

39 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Common.Request.Sms
{
public class SendSmsReq
{
/**
* 加密签名信息MD5(key + userid);加密后字符串转大写
*/
public string sign {get; set;}
/**
* 我方分配给贵司的的短信接口用户ID点击查看账号信息
*/
public string userid {get; set;}
/**
* 商户名称签名最好用简称该字段信息会在短信标签处显示。不要超过5个字符
*/
public string seller {get; set;}
/**
* 接收短信手机号
*/
public string phone {get; set;}
/**
* 短信模板ID
*/
public string tid {get; set;}
/**
* 短信模板替换内容
*/
public string content {get; set;}
/**
* 外部订单号:当该短信发送模板有回调地址时,外部订单号会返回给调用者,方便用户更新数据
*/
public string outorder {get; set;}
/**
* 回调地址:如果客户在发送短信时填写该参数,将按照这个参数回调短信发送状态;
* 如果为空,将按照模板配置的地址回调短信发送状态;如果两个参数都不填写,将不会回调通知状态
*/
public string callback {get; set;}
}
}