LevelOS/MLL/ModeloItens.cs

134 lines
4.4 KiB
C#

using System;
using System.Text.RegularExpressions;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace MLL
{
public class ModeloItens
{
public ModeloItens()
{
ID_ITENS = 0;
CODIGO = string.Empty;
NUMERO = string.Empty;
NOME = string.Empty;
GRUPO = string.Empty;
SUBGRUPO = string.Empty;
TIPO = string.Empty;
UNIDADE = string.Empty;
NUMERO_FAB = string.Empty;
ESTOQUE_MIN = string.Empty;
ESTOQUE_IDEAL = string.Empty;
ESTOQUE_DISP = string.Empty;
CUSTO = string.Empty;
LUCRO = string.Empty;
VENDA = string.Empty;
FORNECEDOR = string.Empty;
LOCAL = string.Empty;
GAVETA = string.Empty;
FABRICANTE = string.Empty;
NOMECURTO = string.Empty;
P_FOTO = string.Empty;
NC_MERCOSUL = string.Empty;
C_CST = string.Empty;
C_ICMS = string.Empty;
C_IPI = string.Empty;
ULTIMA_VENDA = string.Empty;
ULTIMA_COMPRA = string.Empty;
PRECO_1 = string.Empty;
PRECO_2 = string.Empty;
GTIN = string.Empty;
VALIDADE = string.Empty;
OBSERVACOES = string.Empty;
}
public ModeloItens(int iD_ITENS, string cODIGO, string nUMERO, string nOME,
string gRUPO, string sUBGRUPO, string tIPO, string uNIDADE,
string nUMERO_FAB, string eSTOQUE_MIN, string eSTOQUE_IDEAL,
string eSTOQUE_DISP, string cUSTO, string lUCRO, string vENDA, string fORNECEDOR, string lOCAL, string gAVETA, string fABRICANTE, string nOMECURTO, string p_FOTO, string nC_MERCOSUL, string c_CST, string c_ICMS, string c_IPI, string uLTIMA_VENDA, string uLTIMA_COMPRA, string pRECO_1, string pRECO_2, string gTIN, string vALIDADE, string oBSERVACOES)
{
ID_ITENS = iD_ITENS;
CODIGO = cODIGO;
NUMERO = nUMERO;
NOME = nOME;
GRUPO = gRUPO;
SUBGRUPO = sUBGRUPO;
TIPO = tIPO;
UNIDADE = uNIDADE;
NUMERO_FAB = nUMERO_FAB;
ESTOQUE_MIN = eSTOQUE_MIN;
ESTOQUE_IDEAL = eSTOQUE_IDEAL;
ESTOQUE_DISP = eSTOQUE_DISP;
CUSTO = cUSTO;
LUCRO = lUCRO;
VENDA = vENDA;
FORNECEDOR = fORNECEDOR;
LOCAL = lOCAL;
GAVETA = gAVETA;
FABRICANTE = fABRICANTE;
NOMECURTO = nOMECURTO;
P_FOTO = p_FOTO;
NC_MERCOSUL = nC_MERCOSUL;
C_CST = c_CST;
C_ICMS = c_ICMS;
C_IPI = c_IPI;
ULTIMA_VENDA = uLTIMA_VENDA;
ULTIMA_COMPRA = uLTIMA_COMPRA;
PRECO_1 = pRECO_1;
PRECO_2 = pRECO_2;
GTIN = gTIN;
VALIDADE = vALIDADE;
OBSERVACOES = oBSERVACOES;
}
public int ID_ITENS { get; set; }
public string CODIGO { get; set; }
public string NUMERO { get; set; }
public string NOME { get; set; }
public string GRUPO { get; set; }
public string SUBGRUPO { get; set; }
public string TIPO { get; set; }
public string UNIDADE { get; set; }
public string NUMERO_FAB { get; set; }
public string ESTOQUE_MIN { get; set; }
public string ESTOQUE_IDEAL { get; set; }
public string ESTOQUE_DISP { get; set; }
public string CUSTO { get; set; }
public string LUCRO { get; set; }
public string VENDA { get; set; }
public string FORNECEDOR { get; set; }
public string LOCAL { get; set; }
public string GAVETA { get; set; }
public string FABRICANTE { get; set; }
public string NOMECURTO { get; set; }
public string P_FOTO { get; set; }
public string NC_MERCOSUL { get; set; }
public string C_CST { get; set; }
public string C_ICMS { get; set; }
public string C_IPI { get; set; }
public string ULTIMA_VENDA { get; set; }
public string ULTIMA_COMPRA { get; set; }
public string PRECO_1 { get; set; }
public string PRECO_2 { get; set; }
public string GTIN { get; set; }
public string VALIDADE { get; set; }
public string OBSERVACOES { get; set; }
}
}