diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Financeiro/RelatorioLancamentos.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Domain.Financeiro/RelatorioLancamentos.cs | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Financeiro/RelatorioLancamentos.cs b/Gestor.Model/Gestor.Model.Domain.Financeiro/RelatorioLancamentos.cs new file mode 100644 index 0000000..00b32ea --- /dev/null +++ b/Gestor.Model/Gestor.Model.Domain.Financeiro/RelatorioLancamentos.cs @@ -0,0 +1,62 @@ +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; } +} |