blob: 14562dfb12b123613a07cd466a2bc71cf0b376e8 (
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
58
59
60
61
|
using System;
using System.ComponentModel;
using Gestor.Model.Attributes;
using Gestor.Model.Domain.Seguros;
namespace Gestor.Model.Domain.Relatorios.ExtratoBaixado;
public class ExtratoBaixadoRelatorio
{
[Tipo("INVALID")]
public bool Selecionado { get; set; }
[Tipo("INVALID")]
public long Id { get; set; }
[Description("SEGURADORA")]
public string Seguradora { get; set; }
[Description("STATUS")]
public string Status { get; set; }
[Description("NÚMERO")]
public string Numero { get; set; }
[Description("HISTÓRICO")]
public string Historico { get; set; }
[Tipo("DATA?")]
[Description("DATA")]
public DateTime? Data { get; set; }
[Tipo("DATA?")]
[Description("DATA DE CRÉDITO")]
public DateTime? DataCredito { get; set; }
[Tipo("VALOR")]
[Description("BRUTO")]
public decimal? Bruto { get; set; }
[Tipo("VALOR")]
[Description("LÍQUIDO")]
public decimal? Liquido { get; set; }
[Tipo("VALOR")]
[Description("IR")]
public decimal? Ir { get; set; }
[Tipo("VALOR")]
[Description("ISS")]
public decimal? Iss { get; set; }
[Tipo("VALOR")]
[Description("OUTRO")]
public decimal? Outro { get; set; }
[Description("OBSERVAÇÃO")]
public string Observacao { get; set; }
[Tipo("INVALID")]
public Gestor.Model.Domain.Seguros.Extrato Extrato { get; set; }
}
|