summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:35:25 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:35:25 +0000
commit674ca83ba9243a9e95a7568c797668dab6aee26a (patch)
tree4a905b3fb1d827665a34d63f67bc5559f8e7235b /Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs
downloadgestor-674ca83ba9243a9e95a7568c797668dab6aee26a.tar.gz
gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.zip
feat: upload files
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs')
-rw-r--r--Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs319
1 files changed, 319 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs b/Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs
new file mode 100644
index 0000000..39e894d
--- /dev/null
+++ b/Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs
@@ -0,0 +1,319 @@
+using Gestor.Model.Attributes;
+using System;
+using System.ComponentModel;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.Relatorios.Fechamento
+{
+ public class Fechamento
+ {
+ [Description("ANO ANTERIOR")]
+ [Tipo("INVALID")]
+ public string AnoAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD APÓLICE")]
+ [Tipo("QUANTIDADE")]
+ public int Apolice
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD APÓLICE ANTERIOR")]
+ [Tipo("QUANTIDADE")]
+ public int ApoliceAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO QTD APÓLICE")]
+ public string ApoliceAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD ENDOSSO")]
+ [Tipo("QUANTIDADE")]
+ public int Endosso
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD ENDOSSO ANTERIOR")]
+ [Tipo("QUANTIDADE")]
+ public int EndossoAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO QTD ENDOSSO")]
+ public string EndossoAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Tipo("INVALID")]
+ public int Entidade
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD FATURA")]
+ [Tipo("QUANTIDADE")]
+ public int Fatura
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD FATURA ANTERIOR")]
+ [Tipo("QUANTIDADE")]
+ public int FaturaAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO QTD FATURA")]
+ public string FaturaAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("MÉDIA FECHADA")]
+ [Tipo("PERCENTUAL")]
+ public decimal Fechada
+ {
+ get;
+ set;
+ }
+
+ [Description("MÉDIA FECHADA ANTERIOR")]
+ [Tipo("PERCENTUAL")]
+ public decimal FechadaAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO MÉDIA FECHADA")]
+ public string FechadaAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO GERADA")]
+ [Tipo("VALOR")]
+ public decimal Gerada
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO GERADA ANTERIOR")]
+ [Tipo("VALOR")]
+ public decimal GeradaAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO COMISSÃO GERADA")]
+ public string GeradaAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Tipo("INVALID")]
+ public long Id
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD ITENS")]
+ [Tipo("QUANTIDADE")]
+ public int Itens
+ {
+ get;
+ set;
+ }
+
+ [Description("QTD ITENS ANTERIOR")]
+ [Tipo("QUANTIDADE")]
+ public int ItensAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO QTD ITENS")]
+ public string ItensAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("MÉDIA MIX %")]
+ [Tipo("PERCENTUAL")]
+ public decimal Mix
+ {
+ get;
+ set;
+ }
+
+ [Description("MÉDIA MIX % ANTERIOR")]
+ [Tipo("PERCENTUAL")]
+ public decimal MixAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO MÉDIA MIX %")]
+ public string MixAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("NOME")]
+ public string Nome
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO PAGA")]
+ [Tipo("VALOR")]
+ public decimal Paga
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO PAGA ANTERIOR")]
+ [Tipo("VALOR")]
+ public decimal PagaAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO COMISSÃO PAGA")]
+ public string PagaAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO PENDENTE")]
+ [Tipo("VALOR")]
+ public decimal Pendente
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO PENDENTE ANTERIOR")]
+ [Tipo("VALOR")]
+ public decimal PendenteAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO COMISSÃO PENDENTE")]
+ public string PendenteAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("PRÊMIO LÍQUIDO")]
+ [Tipo("VALOR")]
+ public decimal PremioLiquido
+ {
+ get;
+ set;
+ }
+
+ [Description("PRÊMIO LÍQUIDO ANTERIOR")]
+ [Tipo("VALOR")]
+ public decimal PremioLiquidoAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO PRÊMIO LÍQUIDO")]
+ public string PremioLiquidoComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("PRÊMIO TOTAL")]
+ [Tipo("VALOR")]
+ public decimal PremioTotal
+ {
+ get;
+ set;
+ }
+
+ [Description("PRÊMIO TOTAL ANTERIOR")]
+ [Tipo("VALOR")]
+ public decimal PremioTotalAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO PRÊMIO TOTAL")]
+ public string PremioTotalComparativo
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO RECEBIDA")]
+ [Tipo("VALOR")]
+ public decimal Recebida
+ {
+ get;
+ set;
+ }
+
+ [Description("COMISSÃO RECEBIDA ANTERIOR")]
+ [Tipo("VALOR")]
+ public decimal RecebidaAnterior
+ {
+ get;
+ set;
+ }
+
+ [Description("COMPARATIVO COMISSÃO RECEBIDA")]
+ public string RecebidaAnteriorComparativo
+ {
+ get;
+ set;
+ }
+
+ public Fechamento()
+ {
+ }
+ }
+} \ No newline at end of file