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.
92 lines
2.4 KiB
C#
92 lines
2.4 KiB
C#
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace DSWeb.SoftMng.Model{
|
|
//Container
|
|
public class Container
|
|
{
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
private string _gid;
|
|
public string GID
|
|
{
|
|
get{ return _gid; }
|
|
set{ _gid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 集装箱号
|
|
/// </summary>
|
|
private string _containerid;
|
|
public string ContainerId
|
|
{
|
|
get{ return _containerid; }
|
|
set{ _containerid = value; }
|
|
}
|
|
/// <summary>
|
|
/// 集装箱规格
|
|
/// </summary>
|
|
private string _containermd;
|
|
public string ContainerMd
|
|
{
|
|
get{ return _containermd; }
|
|
set{ _containermd = value; }
|
|
}
|
|
/// <summary>
|
|
/// ContainerMd_Text
|
|
/// </summary>
|
|
private string _containermd_text;
|
|
public string ContainerMd_Text
|
|
{
|
|
get{ return _containermd_text; }
|
|
set{ _containermd_text = value; }
|
|
}
|
|
/// <summary>
|
|
/// 商品项号
|
|
/// </summary>
|
|
private string _goodsno;
|
|
public string GoodsNo
|
|
{
|
|
get{ return _goodsno; }
|
|
set{ _goodsno = value; }
|
|
}
|
|
/// <summary>
|
|
/// 拼箱标识
|
|
/// </summary>
|
|
private string _lclflag;
|
|
public string LclFlag
|
|
{
|
|
get{ return _lclflag; }
|
|
set{ _lclflag = value; }
|
|
}
|
|
/// <summary>
|
|
/// 箱货重量
|
|
/// </summary>
|
|
private decimal? _goodscontawt;
|
|
public decimal? GoodsContaWt
|
|
{
|
|
get{ return _goodscontawt; }
|
|
set{ _goodscontawt = value; }
|
|
}
|
|
/// <summary>
|
|
/// 自重
|
|
/// </summary>
|
|
private decimal? _containerwt;
|
|
public decimal? ContainerWt
|
|
{
|
|
get{ return _containerwt; }
|
|
set{ _containerwt = value; }
|
|
}
|
|
/// <summary>
|
|
/// 关联 [DecHead] 表 的主键 [GID]
|
|
/// </summary>
|
|
private string _pid;
|
|
public string PID
|
|
{
|
|
get{ return _pid; }
|
|
set{ _pid = value; }
|
|
}
|
|
}
|
|
}
|