|
using System;
|
|
namespace Model
|
{
|
public class GwSm
|
{
|
private string _messageId;
|
private string _messageIdNext;
|
private int _apId;
|
private int _opId;
|
private string _sourceId;
|
private string _destnationId;
|
private int _pkTotal;
|
private int _pkNumber;
|
private int _tppid;
|
private int _tpudhi;
|
private int _priority;
|
private int _rdFlag;
|
private int _msgFormat;
|
private int _msgLength;
|
private string _msgContent;
|
private long _result;
|
private long _resultNext;
|
private DateTime _submitTime;
|
private DateTime _submitTimeNext;
|
private int _status;
|
|
private string _opName;
|
|
private int _resendStatus;//重发状态,1是重发
|
private int _resendFlag;//重发标志。1表示是补发的短信。0表示原来提交的
|
|
public string APMID
|
{
|
get
|
{
|
return this._messageId;
|
}
|
set
|
{
|
this._messageId = value;
|
}
|
}
|
|
public string OPMID
|
{
|
get
|
{
|
return this._messageIdNext;
|
}
|
set
|
{
|
this._messageIdNext = value;
|
}
|
}
|
|
public int ApID
|
{
|
get
|
{
|
return this._apId;
|
}
|
set
|
{
|
this._apId = value;
|
}
|
}
|
|
public int OpID
|
{
|
get
|
{
|
return this._opId;
|
}
|
set
|
{
|
this._opId = value;
|
}
|
}
|
|
public string AccessCode
|
{
|
get
|
{
|
return this._sourceId;
|
}
|
set
|
{
|
this._sourceId = value;
|
}
|
}
|
|
public string Mobile
|
{
|
get
|
{
|
return this._destnationId;
|
}
|
set
|
{
|
this._destnationId = value;
|
}
|
}
|
|
public int PkTotal
|
{
|
get
|
{
|
return this._pkTotal;
|
}
|
set
|
{
|
this._pkTotal = value;
|
}
|
}
|
|
public int PkNumber
|
{
|
get
|
{
|
return this._pkNumber;
|
}
|
set
|
{
|
this._pkNumber = value;
|
}
|
}
|
|
public int Tppid
|
{
|
get
|
{
|
return this._tppid;
|
}
|
set
|
{
|
this._tppid = value;
|
}
|
}
|
|
public int Tpudhi
|
{
|
get
|
{
|
return this._tpudhi;
|
}
|
set
|
{
|
this._tpudhi = value;
|
}
|
}
|
|
public int Priority
|
{
|
get
|
{
|
return this._priority;
|
}
|
set
|
{
|
this._priority = value;
|
}
|
}
|
|
public int RdFlag
|
{
|
get
|
{
|
return this._rdFlag;
|
}
|
set
|
{
|
this._rdFlag = value;
|
}
|
}
|
|
public int MsgFormat
|
{
|
get
|
{
|
return this._msgFormat;
|
}
|
set
|
{
|
this._msgFormat = value;
|
}
|
}
|
|
public int MsgLength
|
{
|
get
|
{
|
return this._msgLength;
|
}
|
set
|
{
|
this._msgLength = value;
|
}
|
}
|
|
public string MsgContent
|
{
|
get
|
{
|
return this._msgContent;
|
}
|
set
|
{
|
this._msgContent = value;
|
}
|
}
|
|
public long APResult
|
{
|
get
|
{
|
return this._result;
|
}
|
set
|
{
|
this._result = value;
|
}
|
}
|
|
public long OPResult
|
{
|
get
|
{
|
return this._resultNext;
|
}
|
set
|
{
|
this._resultNext = value;
|
}
|
}
|
|
public DateTime SubmitTime
|
{
|
get
|
{
|
return this._submitTime;
|
}
|
set
|
{
|
this._submitTime = value;
|
}
|
}
|
|
public DateTime OpSubmitTime
|
{
|
get
|
{
|
return this._submitTimeNext;
|
}
|
set
|
{
|
this._submitTimeNext = value;
|
}
|
}
|
|
public int STATUS
|
{
|
get
|
{
|
return this._status;
|
}
|
set
|
{
|
this._status = value;
|
}
|
}
|
|
public DateTime OpDeliverTime { get; set; }
|
|
public string Stat { get; set; }
|
|
public int APFeeCount { get; set; }
|
|
public int OPFeeCount { get; set; }
|
|
public string SPID { get; set; }
|
|
public string ClientID { get; set; }
|
|
public string ExtNo { get; set; }
|
|
public string REP { get; set; }
|
|
public string AccessCodeReal { get; set; }
|
|
public string OpName
|
{
|
get { return this._opName; }
|
set { this._opName = value; }
|
}
|
|
public int ResendStatus { get => _resendStatus; set => _resendStatus = value; }
|
public int ResendFlag { get => _resendFlag; set => _resendFlag = value; }
|
}
|
}
|