summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs')
-rw-r--r--Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs87
1 files changed, 87 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs b/Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs
new file mode 100644
index 0000000..22a65e2
--- /dev/null
+++ b/Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs
@@ -0,0 +1,87 @@
+using System;
+using System.ComponentModel;
+using Gestor.Model.Attributes;
+using Gestor.Model.Domain.Seguros;
+
+namespace Gestor.Model.Domain.Relatorios.FaturaPendente;
+
+public class FaturaPendente
+{
+ [Tipo("INVALID")]
+ public bool Selecionado { get; set; }
+
+ [Tipo("INVALID")]
+ public Documento Documento { get; set; }
+
+ [Tipo("INVALID")]
+ public Parcela Parcela { get; set; }
+
+ [Description("PENDÊNCIA")]
+ public int Pendencia { get; set; }
+
+ [Description("CLIENTE")]
+ public string Cliente { get; set; }
+
+ [Description("APÓLICE")]
+ public string Apolice { get; set; }
+
+ [Description("ENDOSSO")]
+ public string Endosso { get; set; }
+
+ [Description("STATUS")]
+ public string Status { get; set; }
+
+ [Tipo("DATA")]
+ [Description("VIGÊNCIA INICIAL")]
+ public DateTime VigenciaInicial { get; set; }
+
+ [Tipo("DATA?")]
+ [Description("VIGÊNCIA FINAL")]
+ public DateTime? VigenciaFinal { get; set; }
+
+ [Description("SEGURADORA")]
+ public string Seguradora { get; set; }
+
+ [Description("RAMO")]
+ public string Ramo { get; set; }
+
+ [Description("PRODUTO")]
+ public string Produto { get; set; }
+
+ [Description("VENDEDOR PRINCIPAL")]
+ public string Vendedor { get; set; }
+
+ [Description("ESTIPULANTE")]
+ public string Estipulante { get; set; }
+
+ [Description("ULTIMA FATURA")]
+ public string Fatura { get; set; }
+
+ [Tipo("DATA?")]
+ [Description("INICIO FATURA")]
+ public DateTime? VigenciaIncialFatura { get; set; }
+
+ [Tipo("DATA?")]
+ [Description("FINAL FATURA")]
+ public DateTime? VigenciaFinalFatura { get; set; }
+
+ [Tipo("DATA?")]
+ [Description("VENCIMENTO")]
+ public DateTime? Vencimento { get; set; }
+
+ [Tipo("DATA?")]
+ [Description("DATA CONTROLE")]
+ public DateTime? DataControle { get; set; }
+
+ [Description("STATUS APÓLICE")]
+ public string StatusApolice { get; set; }
+
+ [Description("ITEM")]
+ public string Item { get; set; }
+
+ [Description("PASTA")]
+ public string Pasta { get; set; }
+
+ [Description("PASTA CLIENTE")]
+ public string PastaCliente { get; set; }
+}