blob: 204f6426abbac70bbefae871a5ceb94ac1a3732a (
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
|
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.Pagamento;
public class SinteticoPagamento
{
public string Descricao { get; set; }
[Tipo("QUANTIDADE")]
[Description("QUANTIDADE DE APÓLICES")]
public int Apolices { get; set; }
[Tipo("QUANTIDADE")]
[Description("QUANTIDADE DE ENDOSSOS")]
public int Endossos { get; set; }
[Tipo("QUANTIDADE")]
[Description("TOTAL DE DOCUMENTOS")]
public int Total { get; set; }
[Tipo("VALOR")]
[Description("SOMA REPASSE BRUTO")]
public decimal RepasseBruto { get; set; }
[Tipo("VALOR")]
[Description("SOMA REPASSE LIQUIDO")]
public decimal RepasseLiquido { get; set; }
}
|