blob: 70bfd959e91d7a7da693e296d4395154d9ae3b06 (
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
|
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.Extrato;
public class DetalhesExtrato
{
[Description("CLIENTE")]
public string Cliente { get; set; }
[Description("APÓLICE")]
public string Apolice { get; set; }
[Description("ENDOSSO")]
public string Endosso { get; set; }
[Description("PARCELA")]
public string Parcela { get; set; }
[Tipo("VALOR")]
[Description("VALOR PAGTO")]
public decimal? Pagto { get; set; }
[Tipo("PERCENTUAL")]
[Description("% COMISSÃO")]
public decimal? Comissao { get; set; }
[Tipo("VALOR")]
[Description("COMISSÃO")]
public decimal? ValorComissao { get; set; }
[Description("STATUS")]
public string Status { get; set; }
}
|