namespace WX.CRM.CRMServices.SMS.DataDrive
{
internal class BatchMsgWaitModel
{
decimal _batchid = 0;
decimal _numberCount = 0;
string _smsClientCode = "";
decimal _MsgTypeId = 0;
string _interfactCode = "";
string _interfaceAccount = "";
string _interfacePwd = "";
string _msgContent = "";
///
/// 批次
///
public decimal batchid
{
get { return _batchid; }
set { _batchid = value; }
}
///
/// 本批次剩余的待发数量
///
public decimal numberCount
{
get { return _numberCount; }
set { _numberCount = value; }
}
///
/// 短信接口帐号的ID
///
public string smsClientCode
{
get { return _smsClientCode; }
set { _smsClientCode = value; }
}
///
/// 短信类型
///
public decimal MsgSubTypeId
{
get { return _MsgTypeId; }
set { _MsgTypeId = value; }
}
///
/// 每个接口的自定义编码
///
public string interfactCode
{
get { return _interfactCode; }
set { _interfactCode = value; }
}
public string interfaceAccount
{
get { return _interfaceAccount; }
set { _interfaceAccount = value; }
}
public string interfacePwd
{
get { return _interfacePwd; }
set { _interfacePwd = value; }
}
public string msgContent
{
get { return _msgContent; }
set { _msgContent = value; }
}
}
}