using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //DecGoodsLimitVin public class DecGoodsLimitVin { /// /// GID /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// 序号 /// private string _goodsNoVin; public string GoodsNoVin { get { return _goodsNoVin; } set { _goodsNoVin = value; } } /// /// VIN序号 /// private string _vinno; public string VinNo { get{ return _vinno; } set{ _vinno = value; } } /// /// 提/运单日期 /// private DateTime? _billladdate; public DateTime? BillLadDate { get{ return _billladdate; } set{ _billladdate = value; } } /// /// 质量保质期 /// private string _qualityqgp; public string QualityQgp { get{ return _qualityqgp; } set{ _qualityqgp = value; } } /// /// 车辆识别代码(VIN) /// private string _vincode; public string VinCode { get{ return _vincode; } set{ _vincode = value; } } /// /// 发动机号或电机号 /// private string _motorno; public string MotorNo { get{ return _motorno; } set{ _motorno = value; } } /// /// 发票号 /// private string _invoiceno; public string InvoiceNo { get{ return _invoiceno; } set{ _invoiceno = value; } } /// /// 发票所列数量 /// private int? _invoicenum; public int? InvoiceNum { get{ return _invoicenum; } set{ _invoicenum = value; } } /// /// 品名(中文) /// private string _prodcnnm; public string ProdCnnm { get{ return _prodcnnm; } set{ _prodcnnm = value; } } /// /// 品名(英文) /// private string _prodennm; public string ProdEnnm { get{ return _prodennm; } set{ _prodennm = value; } } /// /// 型号(英文) /// private string _modelen; public string ModelEn { get{ return _modelen; } set{ _modelen = value; } } /// /// 底盘(车架)号 /// private string _chassisno; public string ChassisNo { get{ return _chassisno; } set{ _chassisno = value; } } /// /// 单价 /// private decimal? _priceperunit; public decimal? PricePerUnit { get{ return _priceperunit; } set{ _priceperunit = value; } } /// /// 关联 [DecGoodsLimt] 表 的主键 [GID] /// private string _pid; public string PID { get{ return _pid; } set{ _pid = value; } } } }