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