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