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.
185 lines
3.3 KiB
C#
185 lines
3.3 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_Tray:实体类(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class EIP_Tray: ModelObjectBillHead
|
|
{
|
|
public EIP_Tray()
|
|
{}
|
|
#region Model
|
|
private string _gid;
|
|
private string _bsno;
|
|
private string _stockno;
|
|
private string _trayno;
|
|
private string _goodsnamett;
|
|
private string _ttpkgs;
|
|
private string _ttweight;
|
|
private string _wmsno;
|
|
private string _wmsoutno;
|
|
private string _isstockup;
|
|
private string _cntrno;
|
|
private string _sealno;
|
|
private string _remark;
|
|
private string _deliverno;
|
|
private string _corpid;
|
|
private string _enterdate;
|
|
private string _enteroperater;
|
|
private string _storagename;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string GID
|
|
{
|
|
set{ _gid=value;}
|
|
get{return _gid;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string BSNO
|
|
{
|
|
set{ _bsno=value;}
|
|
get{return _bsno;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string STOCKNO
|
|
{
|
|
set{ _stockno=value;}
|
|
get{return _stockno;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string TRAYNO
|
|
{
|
|
set{ _trayno=value;}
|
|
get{return _trayno;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string GOODSNAMETT
|
|
{
|
|
set{ _goodsnamett=value;}
|
|
get{return _goodsnamett;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string TTPKGS
|
|
{
|
|
set{ _ttpkgs=value;}
|
|
get{return _ttpkgs;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string TTWEIGHT
|
|
{
|
|
set{ _ttweight=value;}
|
|
get{return _ttweight;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string WMSNO
|
|
{
|
|
set{ _wmsno=value;}
|
|
get{return _wmsno;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string WMSOUTNO
|
|
{
|
|
set{ _wmsoutno=value;}
|
|
get{return _wmsoutno;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ISSTOCKUP
|
|
{
|
|
set{ _isstockup=value;}
|
|
get{return _isstockup;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CNTRNO
|
|
{
|
|
set{ _cntrno=value;}
|
|
get{return _cntrno;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string SEALNO
|
|
{
|
|
set{ _sealno=value;}
|
|
get{return _sealno;}
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string REMARK
|
|
{
|
|
set{ _remark=value;}
|
|
get{return _remark;}
|
|
}
|
|
|
|
public string DELIVERNO
|
|
{
|
|
set { _deliverno = value; }
|
|
get { return _deliverno; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CORPID
|
|
{
|
|
set { _corpid = value; }
|
|
get { return _corpid; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string ENTERDATE
|
|
{
|
|
set { _enterdate = value; }
|
|
get { return _enterdate; }
|
|
}
|
|
|
|
public string ENTEROPERATER
|
|
{
|
|
set { _enteroperater = value; }
|
|
get { return _enteroperater; }
|
|
}
|
|
|
|
public string STORAGENAME
|
|
{
|
|
set { _storagename = value; }
|
|
get { return _storagename; }
|
|
}
|
|
|
|
|
|
|
|
#endregion Model
|
|
|
|
}
|
|
}
|
|
|