|
using System;
|
|
namespace Model
|
{
|
public class GwRm
|
{
|
private string _messageId;
|
private int _apId;
|
private int _opId;
|
private string _sourceId;
|
private string _destnationId;
|
private string _stat;
|
private string _submitTime;
|
private string _doneTime;
|
private DateTime _reportTime;
|
|
public string APMID
|
{
|
get
|
{
|
return this._messageId;
|
}
|
set
|
{
|
this._messageId = 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 string Stat
|
{
|
get
|
{
|
return this._stat;
|
}
|
set
|
{
|
this._stat = value;
|
}
|
}
|
|
public string SubmitTime
|
{
|
get
|
{
|
return this._submitTime;
|
}
|
set
|
{
|
this._submitTime = value;
|
}
|
}
|
|
public string DoneTime
|
{
|
get
|
{
|
return this._doneTime;
|
}
|
set
|
{
|
this._doneTime = value;
|
}
|
}
|
|
public DateTime ReportTime
|
{
|
get
|
{
|
return this._reportTime;
|
}
|
set
|
{
|
this._reportTime = value;
|
}
|
}
|
|
public string OPMID { get; set; }
|
|
public string ExtMsg { get; set; }
|
|
public string SPID { get; set; }
|
|
public string ClientID { get; set; }
|
}
|
}
|