blob: 981102760f670bacda96883fd5f0b577a248de82 (
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
|
using System.ComponentModel;
using Gestor.Model.Attributes;
namespace Gestor.Model.Domain.Relatorios.MetaVendedor;
public class MetaVendedorRelatorio
{
[Tipo("INVALID")]
public bool Selecionado { get; set; }
[Tipo("INVALID")]
public long Id { get; set; }
[Description("VENDEDOR")]
public string Vendedor { get; set; }
[Tipo("VALOR")]
[Description("META ATINGIR")]
public decimal MetaAtingir { get; set; }
[Tipo("VALOR")]
[Description("META CUMPRIDA")]
public decimal MetaCumprida { get; set; }
}
|