blob: b476f674ddb61d8bcbc69e2014be273c22b6a8a8 (
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
|
using System;
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Domain.Seguros;
namespace Gestor.Model.Domain.Relatorios.CriticaApolice;
public class ApoliceCritica
{
[Tipo("INVALID")]
public bool Selecionado { get; set; }
[Tipo("INVALID")]
public Gestor.Model.Domain.Seguros.CriticaApolice Critica { get; set; }
[Description("PENDÊNCIA")]
public string Pendencia { get; set; }
[Description("CLIENTE")]
public string Cliente { get; set; }
[Description("PROPOSTA")]
public string Proposta { get; set; }
[Description("APÓLICE")]
public string Apolice { get; set; }
[Description("PROPOSTA ENDOSSO")]
public string PropostaEndosso { get; set; }
[Tipo("DATA")]
[Description("VIGÊNCIA INICIAL")]
public DateTime VigenciaInicial { get; set; }
[Description("RAMO")]
public string Ramo { get; set; }
[Description("SEGURADORA")]
public string Seguradora { get; set; }
[Description("TIPO DOCUMENTO")]
public string Tipo { get; set; }
[Tipo("DATA")]
[Description("DATA IMPORTAÇÃO")]
public DateTime Importado { get; set; }
[Description("USUÁRIO IMPORTAÇÃO")]
public string UsuarioImportacao { get; set; }
[Tipo("DATA?")]
[Description("DATA CRÍTICA")]
public DateTime? Criticado { get; set; }
[Description("USUÁRIO CRÍTICA")]
public string UsuarioCritica { get; set; }
}
|