You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
254 lines
5.3 KiB
C#
254 lines
5.3 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.TruckMng.Models.MsWlPc
|
|
{
|
|
[JsonObject]
|
|
public class MsWl_LKPcHead : MsWlPcHead
|
|
{
|
|
#region private Fields
|
|
|
|
private string _billNo = "*";
|
|
private DateTime? _lrDate = null;
|
|
private DateTime? _jzDate = null;
|
|
private string _userCode = String.Empty;
|
|
private string _userName = String.Empty;
|
|
private string _orgCode = String.Empty;
|
|
private string _orgName = String.Empty;
|
|
private string _truckNo = String.Empty;
|
|
private string _truckNo_Ref = String.Empty;
|
|
private string _drvCode = String.Empty;
|
|
private string _drvName = String.Empty;
|
|
private string _drvName_Ref = String.Empty;
|
|
private string _mobile = String.Empty;
|
|
private string _expDate = String.Empty;
|
|
private string _containerType = String.Empty;
|
|
private string _containerType_Ref = String.Empty;
|
|
private decimal _containerQty = 0;
|
|
private string _voyVeg = String.Empty;
|
|
private string _voyVeg_Ref = String.Empty;
|
|
private string _etDate = String.Empty;
|
|
private string _endPortDate = String.Empty;
|
|
private string _mblNo = String.Empty;
|
|
private string _yardCode = String.Empty;
|
|
private string _yardCode_Ref = String.Empty;
|
|
private string _yardName = String.Empty;
|
|
private string _rtnYardCode = String.Empty;
|
|
private string _rtnYardCode_Ref = String.Empty;
|
|
private string _rtnYardName = String.Empty;
|
|
private decimal _fuelQty = 0;
|
|
private string _oilLrDate = String.Empty;
|
|
private string _oilUser = String.Empty;
|
|
private string _oilUser_Ref = String.Empty;
|
|
|
|
private string _FeeStatus = String.Empty;
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string BillNo
|
|
{
|
|
get {return _billNo;}
|
|
set {_billNo=value;}
|
|
}
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public DateTime? LrDate
|
|
{
|
|
get {return _lrDate;}
|
|
set {_lrDate=value;}
|
|
}
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public DateTime? JzDate
|
|
{
|
|
get {return _jzDate;}
|
|
set {_jzDate=value;}
|
|
}
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string UserCode
|
|
{
|
|
get {return _userCode;}
|
|
set {_userCode=value;}
|
|
}
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string UserName
|
|
{
|
|
get {return _userName;}
|
|
set {_userName=value;}
|
|
}
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string OrgCode
|
|
{
|
|
get {return _orgCode;}
|
|
set {_orgCode=value;}
|
|
}
|
|
[ModelDB(MDBType = ModelDBOprationType.Insert)]
|
|
public string OrgName
|
|
{
|
|
get {return _orgName;}
|
|
set {_orgName=value;}
|
|
}
|
|
|
|
public string TruckNo
|
|
{
|
|
get {return _truckNo;}
|
|
set {_truckNo=value;}
|
|
}
|
|
public string TruckNo_Ref
|
|
{
|
|
get {return _truckNo_Ref;}
|
|
set {_truckNo_Ref=value;}
|
|
}
|
|
|
|
public string DrvCode
|
|
{
|
|
get { return _drvCode; }
|
|
set { _drvCode = value; }
|
|
}
|
|
|
|
public string DrvName
|
|
{
|
|
get {return _drvName;}
|
|
set {_drvName=value;}
|
|
}
|
|
public string DrvName_Ref
|
|
{
|
|
get {return _drvName_Ref;}
|
|
set {_drvName_Ref=value;}
|
|
}
|
|
|
|
public string Mobile
|
|
{
|
|
get {return _mobile;}
|
|
set {_mobile=value;}
|
|
}
|
|
|
|
public string ExpDate
|
|
{
|
|
get {return _expDate;}
|
|
set {_expDate=value;}
|
|
}
|
|
|
|
public string ContainerType
|
|
{
|
|
get {return _containerType;}
|
|
set {_containerType=value;}
|
|
}
|
|
public string ContainerType_Ref
|
|
{
|
|
get {return _containerType_Ref;}
|
|
set {_containerType_Ref=value;}
|
|
}
|
|
|
|
public decimal ContainerQty
|
|
{
|
|
get {return _containerQty;}
|
|
set {_containerQty=value;}
|
|
}
|
|
|
|
public string VoyVeg
|
|
{
|
|
get {return _voyVeg;}
|
|
set {_voyVeg=value;}
|
|
}
|
|
public string VoyVeg_Ref
|
|
{
|
|
get {return _voyVeg_Ref;}
|
|
set {_voyVeg_Ref=value;}
|
|
}
|
|
|
|
public string EtDate
|
|
{
|
|
get {return _etDate;}
|
|
set {_etDate=value;}
|
|
}
|
|
|
|
public string EndPortDate
|
|
{
|
|
get {return _endPortDate;}
|
|
set {_endPortDate=value;}
|
|
}
|
|
|
|
public string MblNo
|
|
{
|
|
get {return _mblNo;}
|
|
set {_mblNo=value;}
|
|
}
|
|
|
|
public string YardCode
|
|
{
|
|
get {return _yardCode;}
|
|
set {_yardCode=value;}
|
|
}
|
|
public string YardCode_Ref
|
|
{
|
|
get {return _yardCode_Ref;}
|
|
set {_yardCode_Ref=value;}
|
|
}
|
|
|
|
public string YardName
|
|
{
|
|
get {return _yardName;}
|
|
set {_yardName=value;}
|
|
}
|
|
|
|
public string RtnYardCode
|
|
{
|
|
get {return _rtnYardCode;}
|
|
set {_rtnYardCode=value;}
|
|
}
|
|
public string RtnYardCode_Ref
|
|
{
|
|
get {return _rtnYardCode_Ref;}
|
|
set {_rtnYardCode_Ref=value;}
|
|
}
|
|
|
|
public string RtnYardName
|
|
{
|
|
get {return _rtnYardName;}
|
|
set {_rtnYardName=value;}
|
|
}
|
|
[ModelDB(MDBType = ModelDBOprationType.Edit)]
|
|
public decimal FuelQty
|
|
{
|
|
get {return _fuelQty;}
|
|
set {_fuelQty=value;}
|
|
}
|
|
[ModelDB]
|
|
public string OilLrDate
|
|
{
|
|
get { return _oilLrDate; }
|
|
set { _oilLrDate = value; }
|
|
}
|
|
[ModelDB]
|
|
public string OilUser
|
|
{
|
|
get { return _oilUser; }
|
|
set { _oilUser = value; }
|
|
}
|
|
public string OilUser_Ref
|
|
{
|
|
get { return _oilUser_Ref; }
|
|
set { _oilUser_Ref = value; }
|
|
}
|
|
|
|
public string FeeStatus
|
|
{
|
|
get { return _FeeStatus; }
|
|
set { _FeeStatus = value; }
|
|
}
|
|
#endregion
|
|
|
|
public MsWl_LKPcHead ( )
|
|
{
|
|
TableName = "tMsWlPcHead";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|