using System; using System.Data; using System.Collections; using System.Collections.Generic; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.MvcShipping.Models.WMSDeliver { /// /// EIP_Goods:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class EIP_Goods: ModelObjectBillHead { public EIP_Goods() { } #region Model private string _gid; private string _bsno; private string _trgid; private string _specs; private string _goodsname; private int? _pkgs; private string _unit; private decimal? _weight; private string _remark; private string _corpid; private int? _remnant; private decimal? _contractnum; private string _trayno; /// /// /// public string GID { set { _gid = value; } get { return _gid; } } /// /// 入库单号 /// public string BSNO { set { _bsno = value; } get { return _bsno; } } /// /// 托号GID /// public string TRGID { set { _trgid = value; } get { return _trgid; } } /// /// 规格 /// public string SPECS { set { _specs = value; } get { return _specs; } } /// /// /// public string GOODSNAME { set { _goodsname = value; } get { return _goodsname; } } /// ///件数 /// public int? PKGS { set { _pkgs = value; } get { return _pkgs; } } /// /// 单位/箱 /// public string UNIT { set { _unit = value; } get { return _unit; } } /// /// 重量 /// public decimal? WEIGHT { set { _weight = value; } get { return _weight; } } /// /// 备注 /// public string REMARK { set { _remark = value; } get { return _remark; } } public string CORPID { set { _corpid = value; } get { return _corpid; } } /// /// 零头箱 /// public int? REMNANT { set { _remnant = value; } get { return _remnant; } } /// /// 合同数量 /// public decimal? CONTRACTNUM { set { _contractnum = value; } get { return _contractnum; } } /// /// 托号 /// public string TRAYNO { set { _trayno = value; } get { return _trayno; } } #endregion Model } }