blob: 09e07dad44d4b03c2ecf5c4fadd467b4fea7b2f9 (
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
|
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.Pendente;
public class SinteticoPendente
{
public string Descricao { get; set; }
[Tipo("VALOR")]
[Description("SOMA COMISSÃO PREVISTA")]
public decimal Comissao { 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; }
}
|