blob: d2fe5ec5be3f3d4c88b4161be590306d4fe500f4 (
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
|
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.Pagamento;
public class AgrupamentoVendedor
{
[Description("VENDEDOR")]
public string Vendedor { get; set; }
[Description("CPF")]
public string CPF { get; set; }
[Description("BANCO")]
public string Banco { get; set; }
[Description("Nº AGÊNCIA")]
public string Agencia { get; set; }
[Description("Nº CONTA")]
public string Conta { get; set; }
[Tipo("VALOR")]
[Description("ADIANTAMENTOS (+)")]
public decimal Credito { get; set; }
[Tipo("VALOR")]
[Description("ADIANTAMENTOS (-)")]
public decimal Debito { get; set; }
[Tipo("VALOR")]
[Description("ADIANTAMENTO LÍQUIDO")]
public decimal Adiantamento { get; set; }
[Tipo("VALOR")]
[Description("REPASSE (+)")]
public decimal Repasse { get; set; }
[Tipo("VALOR")]
[Description("ESTORNOS (-)")]
public decimal Estorno { get; set; }
[Tipo("VALOR")]
[Description("REPASSE BRUTO")]
public decimal RepasseBruto { get; set; }
[Tipo("VALOR")]
[Description("DESCONTO")]
public decimal Desconto { get; set; }
[Tipo("VALOR")]
[Description("REPASSE LÍQUIDO")]
public decimal ValorLiquido { get; set; }
}
|