93 lines
3.7 KiB
C#
93 lines
3.7 KiB
C#
using System;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloNotasItensDetalha
|
|
{
|
|
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;
|
|
VIN = vIN;
|
|
this.condVeic = condVeic;
|
|
this.cMod = cMod;
|
|
this.cCorDENATRAN = cCorDENATRAN;
|
|
this.lota = lota;
|
|
this.tpRest = tpRest;
|
|
this.tpArma = tpArma;
|
|
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; }
|
|
}
|
|
} |