|
|
using System;
|
|
namespace Model
|
{
|
public class LgSmsDetail
|
{
|
private int _ID;
|
private string _Mid;
|
private int _TaskID;
|
private int _ApID;
|
private string _SpID;
|
private string _ClientID;
|
private string _AccessCode;
|
private string _Mobile;
|
private string _ConTent;
|
private int _Status;
|
private string _SubMitCode;
|
private DateTime _SubMitTime;
|
private DateTime _ReportTime;
|
private string _ReportCode;
|
|
public int ID
|
{
|
get
|
{
|
return this._ID;
|
}
|
set
|
{
|
this._ID = value;
|
}
|
}
|
|
public string Mid
|
{
|
get
|
{
|
return this._Mid;
|
}
|
set
|
{
|
this._Mid = value;
|
}
|
}
|
|
public int TaskID
|
{
|
get
|
{
|
return this._TaskID;
|
}
|
set
|
{
|
this._TaskID = value;
|
}
|
}
|
|
public int ApID
|
{
|
get
|
{
|
return this._ApID;
|
}
|
set
|
{
|
this._ApID = value;
|
}
|
}
|
|
public string SpID
|
{
|
get
|
{
|
return this._SpID;
|
}
|
set
|
{
|
this._SpID = value;
|
}
|
}
|
|
public string ClientID
|
{
|
get
|
{
|
return this._ClientID;
|
}
|
set
|
{
|
this._ClientID = value;
|
}
|
}
|
|
public string AccessCode
|
{
|
get
|
{
|
return this._AccessCode;
|
}
|
set
|
{
|
this._AccessCode = value;
|
}
|
}
|
|
public string Mobile
|
{
|
get
|
{
|
return this._Mobile;
|
}
|
set
|
{
|
this._Mobile = value;
|
}
|
}
|
|
public string Content
|
{
|
get
|
{
|
return this._ConTent;
|
}
|
set
|
{
|
this._ConTent = value;
|
}
|
}
|
|
public int Status
|
{
|
get
|
{
|
return this._Status;
|
}
|
set
|
{
|
this._Status = value;
|
}
|
}
|
|
public string SubMitCode
|
{
|
get
|
{
|
return this._SubMitCode;
|
}
|
set
|
{
|
this._SubMitCode = value;
|
}
|
}
|
|
public DateTime SubMitTime
|
{
|
get
|
{
|
return this._SubMitTime;
|
}
|
set
|
{
|
this._SubMitTime = value;
|
}
|
}
|
|
public DateTime ReportTime
|
{
|
get
|
{
|
return this._ReportTime;
|
}
|
set
|
{
|
this._ReportTime = value;
|
}
|
}
|
|
public string ReportCode
|
{
|
get
|
{
|
return this._ReportCode;
|
}
|
set
|
{
|
this._ReportCode = value;
|
}
|
}
|
}
|
}
|