From 0440c722a221b8068bbf388c1c0c51f0faff0451 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 14:17:46 -0300 Subject: some dlls --- .../FaturaPendente.cs | 87 ++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs (limited to 'Gestor.Model/Gestor.Model.Domain.Relatorios.FaturaPendente/FaturaPendente.cs') 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; } +} -- cgit v1.2.3