summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Financeiro/RelatorioLancamentos.cs
blob: 00b32eaccda07e298df6392eb67056c06426d0ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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; }
}