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

61 lines
1.5 KiB
C#
Raw Permalink 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 QQSmsResultModel
{
/// <summary>
/// 0表示成功非0表示失败失败后没有detail列表信息
/// </summary>
public int result { get; set; }
/// <summary>
/// result非0时的具体错误信息
/// </summary>
public string errmsg { get; set; }
/// <summary>
/// 用户的session内容腾讯server回包中会原样返回
/// </summary>
public string ext { get; set; }
/// <summary>
/// 消息内容
/// </summary>
public List<Detail> detail { get; set; }
}
public class Detail
{
/// <summary>
/// 0表示成功(计费依据)非0表示失败
/// </summary>
public int result { get; set; }
/// <summary>
/// result非0时的具体错误信息
/// </summary>
public string errmsg { get; set; }
/// <summary>
/// 手机号码
/// </summary>
public string mobile { get; set; }
/// <summary>
/// 国家码
/// </summary>
public string country { get; set; }
/// <summary>
/// 标识本次发送id
/// </summary>
public string sid { get; set; }
/// <summary>
/// 短信计费的条数
/// </summary>
public int fee { get; set; }
}
}