blob: 3c9fd6bf43c36a46d8f297a1458c63709f956b53 (
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
|
using System;
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.NotaFiscal;
public class NotaFiscalRelatorio
{
[Tipo("INVALID")]
public bool Selecionado { get; set; }
[Tipo("INVALID")]
public long Id { get; set; }
[Description("SEGURADORA")]
public string Seguradora { get; set; }
[Tipo("VALOR")]
[Description("VALOR LÍQUIDO")]
public decimal Liquido { get; set; }
[Tipo("VALOR")]
[Description("ISS")]
public decimal Iss { get; set; }
[Tipo("VALOR")]
[Description("VALOR BRUTO")]
public decimal Bruto { get; set; }
[Tipo("DATA?")]
[Description("DATA")]
public DateTime? Data { get; set; }
[Description("ESTIPULANTE")]
public string Estipulante { get; set; }
[Description("EXTRATO")]
public string Extrato { get; set; }
[Description("CNPJ")]
public string Cnpj { get; set; }
[Tipo("VALOR")]
[Description("IR")]
public decimal Ir { get; set; }
}
|