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.

83 lines
2.2 KiB
C#

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