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.

146 lines
3.9 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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