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:38:18 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
commit1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch)
treee1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
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, 0 insertions, 319 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs b/Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs
deleted file mode 100644
index 39e894d..0000000
--- a/Gestor.Model/Model.Domain.Relatorios/Fechamento/Fechamento.cs
+++ /dev/null
@@ -1,319 +0,0 @@
-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