summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Domain.Relatorios/Extrato/Extrato.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.Relatorios/Extrato/Extrato.cs')
-rw-r--r--Codemerx/Gestor.Model/Model.Domain.Relatorios/Extrato/Extrato.cs120
1 files changed, 120 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.Relatorios/Extrato/Extrato.cs b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Extrato/Extrato.cs
new file mode 100644
index 0000000..5017fb7
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Extrato/Extrato.cs
@@ -0,0 +1,120 @@
+using Gestor.Model.Attributes;
+using Gestor.Model.Common;
+using Gestor.Model.Domain.Common;
+using Gestor.Model.Domain.Seguros;
+using System;
+using System.ComponentModel;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.Relatorios.Extrato
+{
+ public class Extrato
+ {
+ [Description("BRUTO")]
+ public decimal? Bruto
+ {
+ get;
+ set;
+ }
+
+ [Description("DATA")]
+ public DateTime? Data
+ {
+ get;
+ set;
+ }
+
+ [Description("DATA DE CRÉDITO")]
+ public DateTime? DataCredito
+ {
+ get;
+ set;
+ }
+
+ public Gestor.Model.Domain.Common.Empresa Empresa
+ {
+ get;
+ set;
+ }
+
+ [Description("HISTORICO")]
+ public string Historico
+ {
+ get;
+ set;
+ }
+
+ [Description("ID")]
+ public long Id
+ {
+ get;
+ set;
+ }
+
+ [Description("IR")]
+ public decimal? Ir
+ {
+ get;
+ set;
+ }
+
+ [Description("ISS")]
+ public decimal? Iss
+ {
+ get;
+ set;
+ }
+
+ [Description("LIQUIDO")]
+ public decimal? Liquido
+ {
+ get;
+ set;
+ }
+
+ [Description("NUMERO")]
+ public string Numero
+ {
+ get;
+ set;
+ }
+
+ [Description("OBSERVAÇÃO")]
+ public string Observacao
+ {
+ get;
+ set;
+ }
+
+ [Description("OUTRO")]
+ public decimal? Outro
+ {
+ get;
+ set;
+ }
+
+ public Gestor.Model.Domain.Seguros.Seguradora Seguradora
+ {
+ get;
+ set;
+ }
+
+ public bool Selecionado
+ {
+ get;
+ set;
+ }
+
+ [Description("STATUS")]
+ [Tipo("ENUM")]
+ public StatusExtrato Status
+ {
+ get;
+ set;
+ }
+
+ public Extrato()
+ {
+ }
+ }
+} \ No newline at end of file