using System; using System.ComponentModel; using Gestor.Model.Attributes; namespace Gestor.Model.Domain.Financeiro; public class RelatorioLancamentos { [Description("FORNECEDOR")] public string Fornecedor { get; set; } [Description("HISTORICO")] public string Historico { get; set; } [Description("DOCUMENTO")] public string Documento { get; set; } [Tipo("QUANTIDADE")] [Description("PARCELA")] public int Parcela { get; set; } [Tipo("DATA")] [Description("VENCIMENTO")] public DateTime Vencimento { get; set; } [Tipo("VALOR")] [Description("VALOR")] public decimal Valor { get; set; } [Tipo("DATA?")] [Description("DATA BAIXA")] public DateTime? Baixa { get; set; } [Tipo("VALOR")] [Description("VALOR PAGO")] public decimal? ValorPago { get; set; } [Tipo("DATA?")] [Description("PAGAMENTO")] public DateTime? Pagamento { get; set; } [Description("PLANO DE CONTAS")] public string Plano { get; set; } [Description("PLANOS")] public string Planos { get; set; } [Description("CENTRO DE CUSTO")] public string Centro { get; set; } [Description("CONTA")] public string Conta { get; set; } [Description("SINAL")] public string Sinal { get; set; } [Description("OBSERVAÇÃO")] public string Observacao { get; set; } [Description("COMPETÊNCIA")] public string Competencia { get; set; } }