blob: 175ec5b459068568a69e4fad134be71b8d275692 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.Fechamento;
public class Fechamento
{
[Tipo("INVALID")]
public int Entidade { get; set; }
[Tipo("INVALID")]
public long Id { get; set; }
[Description("NOME")]
public string Nome { get; set; }
[Tipo("VALOR")]
[Description("PRÊMIO TOTAL")]
public decimal PremioTotal { get; set; }
[Tipo("VALOR")]
[Description("PRÊMIO TOTAL ANTERIOR")]
public decimal PremioTotalAnterior { get; set; }
[Description("COMPARATIVO PRÊMIO TOTAL")]
public string PremioTotalComparativo { get; set; }
[Tipo("VALOR")]
[Description("PRÊMIO LÍQUIDO")]
public decimal PremioLiquido { get; set; }
[Tipo("VALOR")]
[Description("PRÊMIO LÍQUIDO ANTERIOR")]
public decimal PremioLiquidoAnterior { get; set; }
[Description("COMPARATIVO PRÊMIO LÍQUIDO")]
public string PremioLiquidoComparativo { get; set; }
[Tipo("PERCENTUAL")]
[Description("MÉDIA FECHADA")]
public decimal Fechada { get; set; }
[Tipo("PERCENTUAL")]
[Description("MÉDIA FECHADA ANTERIOR")]
public decimal FechadaAnterior { get; set; }
[Description("COMPARATIVO MÉDIA FECHADA")]
public string FechadaAnteriorComparativo { get; set; }
[Tipo("PERCENTUAL")]
[Description("MÉDIA MIX %")]
public decimal Mix { get; set; }
[Tipo("PERCENTUAL")]
[Description("MÉDIA MIX % ANTERIOR")]
public decimal MixAnterior { get; set; }
[Description("COMPARATIVO MÉDIA MIX %")]
public string MixAnteriorComparativo { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO GERADA")]
public decimal Gerada { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO GERADA ANTERIOR")]
public decimal GeradaAnterior { get; set; }
[Description("COMPARATIVO COMISSÃO GERADA")]
public string GeradaAnteriorComparativo { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO RECEBIDA")]
public decimal Recebida { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO RECEBIDA ANTERIOR")]
public decimal RecebidaAnterior { get; set; }
[Description("COMPARATIVO COMISSÃO RECEBIDA")]
public string RecebidaAnteriorComparativo { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO PENDENTE")]
public decimal Pendente { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO PENDENTE ANTERIOR")]
public decimal PendenteAnterior { get; set; }
[Description("COMPARATIVO COMISSÃO PENDENTE")]
public string PendenteAnteriorComparativo { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO PAGA")]
public decimal Paga { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO PAGA ANTERIOR")]
public decimal PagaAnterior { get; set; }
[Description("COMPARATIVO COMISSÃO PAGA")]
public string PagaAnteriorComparativo { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD APÓLICE")]
public int Apolice { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD APÓLICE ANTERIOR")]
public int ApoliceAnterior { get; set; }
[Description("COMPARATIVO QTD APÓLICE")]
public string ApoliceAnteriorComparativo { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD ENDOSSO")]
public int Endosso { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD ENDOSSO ANTERIOR")]
public int EndossoAnterior { get; set; }
[Description("COMPARATIVO QTD ENDOSSO")]
public string EndossoAnteriorComparativo { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD FATURA")]
public int Fatura { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD FATURA ANTERIOR")]
public int FaturaAnterior { get; set; }
[Description("COMPARATIVO QTD FATURA")]
public string FaturaAnteriorComparativo { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD ITENS")]
public int Itens { get; set; }
[Tipo("QUANTIDADE")]
[Description("QTD ITENS ANTERIOR")]
public int ItensAnterior { get; set; }
[Description("COMPARATIVO QTD ITENS")]
public string ItensAnteriorComparativo { get; set; }
[Tipo("INVALID")]
[Description("ANO ANTERIOR")]
public string AnoAnterior { get; set; }
}
|