using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //DecGoodsLimit public class DecGoodsLimit { /// /// 主键 /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// 商品序号 /// private string _goodsno; public string GoodsNo { get{ return _goodsno; } set{ _goodsno = value; } } /// /// 许可证类别代码 /// private string _lictypecode; public string LicTypeCode { get{ return _lictypecode; } set{ _lictypecode = value; } } /// /// LicTypeCode_Text /// private string _lictypecode_text; public string LicTypeCode_Text { get{ return _lictypecode_text; } set{ _lictypecode_text = value; } } /// /// 许可证编号 /// private string _licenceno; public string LicenceNo { get{ return _licenceno; } set{ _licenceno = value; } } /// /// 许可证核销明细序号 /// private string _licwrtofdetailno; public string LicWrtofDetailNo { get{ return _licwrtofdetailno; } set{ _licwrtofdetailno = value; } } /// /// 许可证核销数量 /// private int? _licwrtofqty; public int? LicWrtofQty { get{ return _licwrtofqty; } set{ _licwrtofqty = value; } } /// /// 关联 [DecList] 表 的主键 [GID] /// private string _pid; public string PID { get{ return _pid; } set{ _pid = value; } } } }