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