42 lines
1.6 KiB
C#

using System.Numerics;
using Unimake.Business.DFe.Xml.GNRE;
namespace NfProcessorApp.Domain.Entities
{
public class TERecord
{
public BigInteger Cod_TE { get; set; }
public BigInteger Cod_Smart_unidade { get; set; }
public int Mes { get; set; }
public DateTime Hora_LO { get; set; }
public string Operacao { get; set; }
public string Tipo { get; set; }
public DateTime Hora_NF { get; set; }
public double Tempo_NF { get; set; }
public string Contraparte_NF { get; set; }
public string Energia { get; set; }
public double Montante_NF { get; set; }
public double Preco_NF { get; set; }
public double Desconto_NF { get; set; }
public double NF_c_ICMS { get; set; }
public bool NF_recebida { get; set; }
public bool NF_Correta { get; set; }
public string Numero_NF { get; set; }
public string Chave_acesso { get; set; }
public bool Lanc_autom { get; set; }
public double Revend_Mont { get; set; }
public double Revend_Prec { get; set; }
public string CNPJ_comp { get; set; }
public string CNPJ_vend { get; set; }
public double Mont_LO { get; set; }
public double Prec_LO { get; set; }
public string Contrato_CliqCCEE { get; set; }
public string Vig_ini_CliqCCEE { get; set; }
public string Vig_fim_CliqCCEE { get; set; }
public string Submercado { get; set; }
public string Consolidado { get; set; }
public string PerfilCliqCCEE { get; set; }
public string PerfilContr { get; set; }
}
}