LevelOS-Core/MLL/ModeloNotasCCE.cs

39 lines
1.2 KiB
C#

using System;
namespace MLL
{
public class ModeloNotasCCE
{
public ModeloNotasCCE()
{
ID_NOTAS_CCE = 0;
CODIGO = string.Empty;
COD_NFE = string.Empty;
CORRECAO = string.Empty;
DATA_HORA = string.Empty;
TZD = string.Empty;
EVENTO = string.Empty;
RETORNO = string.Empty;
}
public ModeloNotasCCE(int iD_NOTAS_CCE, string cODIGO, string cOD_NFE, string cORRECAO, string dATA_HORA, string tZD, string eVENTO, string rETORNO)
{
ID_NOTAS_CCE = iD_NOTAS_CCE;
CODIGO = cODIGO;
COD_NFE = cOD_NFE;
CORRECAO = cORRECAO;
DATA_HORA = dATA_HORA;
TZD = tZD;
EVENTO = eVENTO;
RETORNO = rETORNO;
}
public int ID_NOTAS_CCE { get; set; }
public string CODIGO { get; set; }
public string COD_NFE { get; set; }
public string CORRECAO { get; set; }
public string DATA_HORA { get; set; }
public string TZD { get; set; }
public string EVENTO { get; set; }
public string RETORNO { get; set; }
}
}