LevelOS-Core/MLL/ModeloNotasItensDetalha.cs

134 lines
5.2 KiB
C#

using System;
namespace MLL
{
public class ModeloNotasItensDetalha
{
public ModeloNotasItensDetalha()
{
ID_NOTAS_ITENS_DETALHA = 0;
CODIGO = string.Empty;
COD_ITEM = string.Empty;
TIPO = string.Empty;
this.TpOp = string.Empty;
this.Chassi = string.Empty;
this.CCor = string.Empty;
this.XCor = string.Empty;
this.Pot = string.Empty;
this.Cilin = string.Empty;
this.PesoL = string.Empty;
this.PesoB = string.Empty;
this.NSerie = string.Empty;
this.TpComb = string.Empty;
this.NMotor = string.Empty;
CMT = string.Empty;
this.Dist = string.Empty;
this.AnoMod = string.Empty;
this.AnoFab = string.Empty;
this.TpPint = string.Empty;
this.TpVeic = string.Empty;
this.EspVeic = string.Empty;
VIN = string.Empty;
this.CondVeic = string.Empty;
this.CMod = string.Empty;
this.CCorDENATRAN = string.Empty;
this.Lota = string.Empty;
this.TpRest = string.Empty;
this.TpArma = string.Empty;
this.NSerie_arma = string.Empty;
this.NCano = string.Empty;
this.Descr = string.Empty;
this.NLote = string.Empty;
this.QLote = string.Empty;
this.DFab = string.Empty;
this.DVal = string.Empty;
this.VPMC = string.Empty;
this.RECOPI = string.Empty;
}
public ModeloNotasItensDetalha(int iD_NOTAS_ITENS_DETALHA, string cODIGO, string cOD_ITEM, string tIPO, string tpOp,
string chassi, string cCor, string xCor, string pot, string cilin, string pesoL, string pesoB,
string nSerie, string tpComb, string nMotor, string cMT, string dist, string anoMod, string anoFab,
string tpPint, string tpVeic, string espVeic, string vIN, string condVeic, string cMod, string cCorDENATRAN,
string lota, string tpRest, string tpArma, string nSerie_arma, string nCano, string descr, string nLote, string qLote,
string dFab, string dVal, string vPMC, string rECOPI)
{
ID_NOTAS_ITENS_DETALHA = iD_NOTAS_ITENS_DETALHA;
CODIGO = cODIGO;
COD_ITEM = cOD_ITEM;
TIPO = tIPO;
this.TpOp = tpOp;
this.Chassi = chassi;
this.CCor = cCor;
this.XCor = xCor;
this.Pot = pot;
this.Cilin = cilin;
this.PesoL = pesoL;
this.PesoB = pesoB;
this.NSerie = nSerie;
this.TpComb = tpComb;
this.NMotor = nMotor;
CMT = cMT;
this.Dist = dist;
this.AnoMod = anoMod;
this.AnoFab = anoFab;
this.TpPint = tpPint;
this.TpVeic = tpVeic;
this.EspVeic = espVeic;
this.VIN = vIN;
this.CondVeic = condVeic;
this.CMod = cMod;
this.CCorDENATRAN = cCorDENATRAN;
this.Lota = lota;
this.TpRest = tpRest;
this.TpArma = tpArma;
this.NSerie_arma = nSerie_arma;
this.NCano = nCano;
this.Descr = descr;
this.NLote = nLote;
this.QLote = qLote;
this.DFab = dFab;
this.DVal = dVal;
this.VPMC = vPMC;
RECOPI = rECOPI;
}
public int ID_NOTAS_ITENS_DETALHA { get; set; }
public string CODIGO { get; set; }
public string COD_ITEM { get; set; }
public string TIPO { get; set; }
public string TpOp { get; set; }
public string Chassi { get; set; }
public string CCor { get; set; }
public string XCor { get; set; }
public string Pot { get; set; }
public string Cilin { get; set; }
public string PesoL { get; set; }
public string PesoB { get; set; }
public string NSerie { get; set; }
public string TpComb { get; set; }
public string NMotor { get; set; }
public string CMT { get; set; }
public string Dist { get; set; }
public string AnoMod { get; set; }
public string AnoFab { get; set; }
public string TpPint { get; set; }
public string TpVeic { get; set; }
public string EspVeic { get; set; }
public string VIN { get; set; }
public string CondVeic { get; set; }
public string CMod { get; set; }
public string CCorDENATRAN { get; set; }
public string Lota { get; set; }
public string TpRest { get; set; }
public string TpArma { get; set; }
public string NSerie_arma { get; set; }
public string NCano { get; set; }
public string Descr { get; set; }
public string NLote { get; set; }
public string QLote { get; set; }
public string DFab { get; set; }
public string DVal { get; set; }
public string VPMC { get; set; }
public string RECOPI { get; set; }
}
}