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