ComplianceServer/oldcode/CRMServices/PkgSms/DataDrive/BatchMsgSendModel.cs

50 lines
1.3 KiB
C#

using System.Collections.Generic;
namespace WX.CRM.CRMServices.SMS.DataDrive
{
internal class BatchMsgSendModel
{
/// <summary>
/// 批次
/// </summary>
public decimal batchId { get; set; }
/// <summary>
/// 短信帐号编码
/// </summary>
public string clientCode { get; set; }
/// <summary>
/// 每个接口自定义的编码
/// </summary>
public string interfaceCode { get; set; }
/// <summary>
/// 对应接口的发送帐号
/// </summary>
public string interfaceAccount { get; set; }
/// <summary>
/// 对应接口的帐号密码
/// </summary>
public string interfacePwd { get; set; }
/// <summary>
/// 短信内容
/// </summary>
public string msgContent { get; set; }
List<string> _mobiles = new List<string>();
/// <summary>
/// 手机号
/// </summary>
public List<string> mobiles
{
get { return _mobiles; }
set { _mobiles = value; }
}
List<decimal> _pkids = new List<decimal>();
public List<decimal> pkids
{
get { return _pkids; }
set { _pkids = value; }
}
}
}