70 lines
1.8 KiB
C#
70 lines
1.8 KiB
C#
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 = "";
|
|
/// <summary>
|
|
/// 批次
|
|
/// </summary>
|
|
public decimal batchid
|
|
{
|
|
get { return _batchid; }
|
|
set { _batchid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 本批次剩余的待发数量
|
|
/// </summary>
|
|
public decimal numberCount
|
|
{
|
|
get { return _numberCount; }
|
|
set { _numberCount = value; }
|
|
}
|
|
/// <summary>
|
|
/// 短信接口帐号的ID
|
|
/// </summary>
|
|
public string smsClientCode
|
|
{
|
|
get { return _smsClientCode; }
|
|
set { _smsClientCode = value; }
|
|
}
|
|
/// <summary>
|
|
/// 短信类型
|
|
/// </summary>
|
|
public decimal MsgSubTypeId
|
|
{
|
|
get { return _MsgTypeId; }
|
|
set { _MsgTypeId = value; }
|
|
}
|
|
/// <summary>
|
|
/// 每个接口的自定义编码
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|
|
}
|