This commit is contained in:
@ -6,18 +6,17 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.Model
|
||||
{
|
||||
public class ErrorLogModel
|
||||
public class ErrorLogModel
|
||||
{
|
||||
private int _ID ;
|
||||
private string _ControlIP = string.Empty;
|
||||
private string _ControlID = string.Empty;
|
||||
private string _Address = string.Empty;
|
||||
private int _ID;
|
||||
|
||||
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;
|
||||
private string _Title = string.Empty;
|
||||
public int _PageIndex = 0;
|
||||
public int _PageSize = 0;
|
||||
|
||||
@ -69,44 +68,7 @@ namespace Epost.Model
|
||||
_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
|
||||
{
|
||||
@ -134,18 +96,6 @@ namespace Epost.Model
|
||||
}
|
||||
}
|
||||
|
||||
public string BkAddress
|
||||
{
|
||||
get
|
||||
{
|
||||
return _BkAddress;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_BkAddress = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Remark
|
||||
{
|
||||
@ -172,5 +122,7 @@ namespace Epost.Model
|
||||
_ID = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Title { get => _Title; set => _Title = value; }
|
||||
}
|
||||
}
|
||||
|
@ -13,6 +13,8 @@ namespace Epost.Model
|
||||
|
||||
private string _BatchId = string.Empty;
|
||||
private string _Tolocation = string.Empty;
|
||||
private string _FromTolocation = string.Empty;
|
||||
|
||||
private string _Sku = string.Empty;
|
||||
private string _GoodsName = string.Empty;
|
||||
private string _Discount = string.Empty;//规格
|
||||
@ -74,6 +76,19 @@ namespace Epost.Model
|
||||
}
|
||||
}
|
||||
|
||||
public string FromTolocation
|
||||
{
|
||||
get
|
||||
{
|
||||
return _FromTolocation;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
_FromTolocation = value;
|
||||
}
|
||||
}
|
||||
|
||||
public string Sku
|
||||
{
|
||||
get
|
||||
|
Reference in New Issue
Block a user