Files
T-DAS/Epost.Model/ErrorLogModel.cs

177 lines
3.1 KiB
C#
Raw Normal View History

2023-01-13 15:30:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class ErrorLogModel
{
private int _ID ;
private string _ControlIP = string.Empty;
private string _ControlID = string.Empty;
private string _Address = string.Empty;
private DateTime _ErrorDate;
private string _Type = string.Empty;
private string _BkAddress = string.Empty;
private string _Remark = string.Empty;
private long _Row = 0;
private string _UserName = string.Empty;
public int _PageIndex = 0;
public int _PageSize = 0;
public int PageIndex
{
get
{
return _PageIndex;
}
set
{
_PageIndex = value;
}
}
public int PageSize
{
get
{
return _PageSize;
}
set
{
_PageSize = value;
}
}
public long Row
{
get
{
return _Row;
}
set
{
_Row = value;
}
}
public string UserName
{
get
{
return _UserName;
}
set
{
_UserName = value;
}
}
public string ControlIP
{
get
{
return _ControlIP;
}
set
{
_ControlIP = value;
}
}
public string ControlID
{
get
{
return _ControlID;
}
set
{
_ControlID = value;
}
}
public string Address
{
get
{
return _Address;
}
set
{
_Address = value;
}
}
public DateTime ErrorDate
{
get
{
return _ErrorDate;
}
set
{
_ErrorDate = value;
}
}
public string Type
{
get
{
return _Type;
}
set
{
_Type = value;
}
}
public string BkAddress
{
get
{
return _BkAddress;
}
set
{
_BkAddress = value;
}
}
public string Remark
{
get
{
return _Remark;
}
set
{
_Remark = value;
}
}
public int ID
{
get
{
return _ID;
}
set
{
_ID = value;
}
}
}
}