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.
75 lines
1.5 KiB
C#
75 lines
1.5 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsOpBulk
|
|
{
|
|
[JsonObject]
|
|
public class MsOpBulkStationKc : ModelObjectBillBody
|
|
{
|
|
#region private Fields
|
|
|
|
private string _ORGCODE = "*";
|
|
private string _STATION = String.Empty;
|
|
private string _GOODCODE = String.Empty;
|
|
private decimal _pkgs = 0;
|
|
private decimal _kgs = 0;
|
|
|
|
#endregion
|
|
|
|
#region Public Properties
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string ORGCODE
|
|
{
|
|
get { return _ORGCODE; }
|
|
set { _ORGCODE = value; }
|
|
}
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string STATION
|
|
{
|
|
get { return _STATION; }
|
|
set { _STATION = value; }
|
|
}
|
|
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string GOODCODE
|
|
{
|
|
get { return _GOODCODE; }
|
|
set { _GOODCODE = value; }
|
|
}
|
|
|
|
|
|
|
|
[ModelDB]
|
|
public decimal PKGS
|
|
{
|
|
get { return _pkgs; }
|
|
set { _pkgs = value; }
|
|
}
|
|
|
|
[ModelDB]
|
|
public decimal KGS
|
|
{
|
|
get { return _kgs; }
|
|
set { _kgs = value; }
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
public MsOpBulkStationKc()
|
|
{
|
|
TableName = "op_bulk_station_kc";
|
|
}
|
|
}
|
|
|
|
#region 参照部分
|
|
|
|
|
|
#endregion
|
|
}
|