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.
DS7/DSWeb/Areas/MvcShipping/Models/MsOpBulk/MsOpBulkStationKcDetail.cs

87 lines
1.6 KiB
C#

using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.MvcShipping.Models.MsOpBulk
{
[JsonObject]
public class MsOpBulkStationKcDetail : ModelObjectBillBody
{
#region private Fields
private string _BsNo = "*";
private string _bstype = String.Empty;
private string _custno = String.Empty;
private string _StationNo = String.Empty;
private string _ExpDate = String.Empty;
private decimal _pkgs = 0;
private decimal _kgs = 0;
#endregion
#region Public Properties
public string BSNO
{
get { return _BsNo; }
set { _BsNo = value; }
}
public string BSTYPE
{
get { return _bstype; }
set { _bstype = value; }
}
public string CUSTNO
{
get { return _custno; }
set { _custno = value; }
}
public string STATIONNO
{
get { return _StationNo; }
set { _StationNo = value; }
}
public string EXPDATE
{
get { return _ExpDate; }
set { _ExpDate = value; }
}
public decimal PKGS
{
get { return _pkgs; }
set { _pkgs = value; }
}
public decimal KGS
{
get { return _kgs; }
set { _kgs = value; }
}
#endregion
public MsOpBulkStationKcDetail()
{
TableName = "V_OP_BULK_KC";
}
}
#region 参照部分
#endregion
}