ComplianceServer/oldcode/CRMServices/PkgSms/InterfaceExec/QQSmsUtil/QQSmsPrams.cs

52 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.

using System.Collections.Generic;
namespace WX.CRM.CRMServices.SMS.InterfaceExec
{
public class QQSmsPrams
{
/// <summary>
/// 手机号码列表
/// </summary>
public List<Tels> tel { get; set; }
/// <summary>
/// 消息内容
/// </summary>
public string msg { get; set; }
/// <summary>
/// app凭证
/// </summary>
public string sig { get; set; }
/// <summary>
/// 0:普通短信;1:营销短信
/// </summary>
public string type { get; set; }
/// <summary>
/// 可选字段通道扩展码在短信回复场景中腾讯server会原样返回开发者可依此区分是哪种类型的回复
/// </summary>
public string extend { get; set; }
/// <summary>
/// 可选字段用户的session内容腾讯server回包中会原样返回
/// </summary>
public string ext { get; set; }
}
public class Tels
{
/// <summary>
/// 国家码
/// </summary>
public string nationcode { get; set; }
/// <summary>
/// 手机号码
/// </summary>
public string phone { get; set; }
}
}