120 lines
4.7 KiB
C#
120 lines
4.7 KiB
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace MLL
|
|
{
|
|
public class ModeloPedidos
|
|
{
|
|
public ModeloPedidos()
|
|
{
|
|
ID_PEDIDOS = 0;
|
|
CODIGO = string.Empty;
|
|
TIPO = string.Empty;
|
|
DATA_PEDIDO = string.Empty;
|
|
FORMA_PGTO = string.Empty;
|
|
ENTREGA_DIA = string.Empty;
|
|
ENTREGA_CONTATO = string.Empty;
|
|
ENTREGA_ENDERECO = string.Empty;
|
|
ENTREGA_CIDADE = string.Empty;
|
|
ENTREGA_UF = string.Empty;
|
|
ENTREGA_CEP = string.Empty;
|
|
ENTREGA_TELEFONE = string.Empty;
|
|
DATA_ENVIO = string.Empty;
|
|
OBSERVACOES = string.Empty;
|
|
FORNECEDOR = string.Empty;
|
|
TRANSPORTADOR = string.Empty;
|
|
VENDEDOR = string.Empty;
|
|
VALOR = string.Empty;
|
|
SITUACAO = string.Empty;
|
|
DESCONTO = string.Empty;
|
|
NUM_NF_PED = string.Empty;
|
|
V_FRETE = string.Empty;
|
|
V_SEGURO = string.Empty;
|
|
V_OUTROS = string.Empty;
|
|
PED_PRAZO = string.Empty;
|
|
PED_FORMA = string.Empty;
|
|
PED_OBS = string.Empty;
|
|
CHAVE_NFE_COMPRA = string.Empty;
|
|
PAGAMENTO_PEDIDO = string.Empty;
|
|
PAGAMENTO_FRETE = string.Empty;
|
|
RASTREIO_FRETE = string.Empty;
|
|
}
|
|
public ModeloPedidos(int iD_PEDIDOS, string cODIGO, string tIPO, string dATA_PEDIDO, string fORMA_PGTO,
|
|
string eNTREGA_DIA, string eNTREGA_CONTATO, string eNTREGA_ENDERECO, string eNTREGA_CIDADE,
|
|
string eNTREGA_UF, string eNTREGA_CEP, string eNTREGA_TELEFONE, string dATA_ENVIO, string oBSERVACOES,
|
|
string fORNECEDOR, string tRANSPORTADOR, string vENDEDOR, string vALOR, string sITUACAO, string dESCONTO,
|
|
string nUM_NF_PED, string v_FRETE, string v_SEGURO, string v_OUTROS, string pED_PRAZO, string pED_FORMA,
|
|
string pED_OBS, string cHAVE_NFE_COMPRA, string pAGAMENTO_PEDIDO, string pAGAMENTO_FRETE, string rASTREIO_FRETE)
|
|
{
|
|
ID_PEDIDOS = iD_PEDIDOS;
|
|
CODIGO = cODIGO;
|
|
TIPO = tIPO;
|
|
DATA_PEDIDO = dATA_PEDIDO;
|
|
FORMA_PGTO = fORMA_PGTO;
|
|
ENTREGA_DIA = eNTREGA_DIA;
|
|
ENTREGA_CONTATO = eNTREGA_CONTATO;
|
|
ENTREGA_ENDERECO = eNTREGA_ENDERECO;
|
|
ENTREGA_CIDADE = eNTREGA_CIDADE;
|
|
ENTREGA_UF = eNTREGA_UF;
|
|
ENTREGA_CEP = eNTREGA_CEP;
|
|
ENTREGA_TELEFONE = eNTREGA_TELEFONE;
|
|
DATA_ENVIO = dATA_ENVIO;
|
|
OBSERVACOES = oBSERVACOES;
|
|
FORNECEDOR = fORNECEDOR;
|
|
TRANSPORTADOR = tRANSPORTADOR;
|
|
VENDEDOR = vENDEDOR;
|
|
VALOR = vALOR;
|
|
SITUACAO = sITUACAO;
|
|
DESCONTO = dESCONTO;
|
|
NUM_NF_PED = nUM_NF_PED;
|
|
V_FRETE = v_FRETE;
|
|
V_SEGURO = v_SEGURO;
|
|
V_OUTROS = v_OUTROS;
|
|
PED_PRAZO = pED_PRAZO;
|
|
PED_FORMA = pED_FORMA;
|
|
PED_OBS = pED_OBS;
|
|
CHAVE_NFE_COMPRA = cHAVE_NFE_COMPRA;
|
|
PAGAMENTO_PEDIDO = pAGAMENTO_PEDIDO;
|
|
PAGAMENTO_FRETE = pAGAMENTO_FRETE;
|
|
RASTREIO_FRETE = rASTREIO_FRETE;
|
|
}
|
|
|
|
public int ID_PEDIDOS { get; set; }
|
|
public string CODIGO { get; set; }
|
|
public string TIPO { get; set; }
|
|
public string DATA_PEDIDO { get; set; }
|
|
public string FORMA_PGTO { get; set; }
|
|
|
|
public string ENTREGA_DIA { get; set; }
|
|
public string ENTREGA_CONTATO { get; set; }
|
|
public string ENTREGA_ENDERECO { get; set; }
|
|
public string ENTREGA_CIDADE { get; set; }
|
|
public string ENTREGA_UF { get; set; }
|
|
public string ENTREGA_CEP { get; set; }
|
|
public string ENTREGA_TELEFONE { get; set; }
|
|
|
|
public string DATA_ENVIO { get; set; }
|
|
public string OBSERVACOES { get; set; }
|
|
public string FORNECEDOR { get; set; }
|
|
public string TRANSPORTADOR { get; set; }
|
|
public string VENDEDOR { get; set; }
|
|
|
|
public string VALOR { get; set; }
|
|
public string SITUACAO { get; set; }
|
|
public string DESCONTO { get; set; }
|
|
public string NUM_NF_PED { get; set; }
|
|
|
|
public string V_FRETE { get; set; }
|
|
public string V_SEGURO { get; set; }
|
|
public string V_OUTROS { get; set; }
|
|
|
|
public string PED_PRAZO { get; set; }
|
|
public string PED_FORMA { get; set; }
|
|
public string PED_OBS { get; set; }
|
|
|
|
public string CHAVE_NFE_COMPRA { get; set; }
|
|
public string PAGAMENTO_PEDIDO { get; set; }
|
|
public string PAGAMENTO_FRETE { get; set; }
|
|
public string RASTREIO_FRETE { get; set; }
|
|
}
|
|
} |