From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- .../AgendaDb.cs | 67 +++++++++++ .../AgendaEmailDb.cs | 19 ++++ .../AgendaTelefoneDb.cs | 25 +++++ .../CategoriaTarefaDb.cs | 19 ++++ .../CredencialDb.cs | 104 +++++++++++++++++ .../FaseDb.cs | 37 +++++++ .../ImpostoDb.cs | 56 ++++++++++ .../LogEmailDb.cs | 105 ++++++++++++++++++ .../NotaFiscalDb.cs | 74 +++++++++++++ .../OrigemClienteDb.cs | 32 ++++++ .../ReciboDb.cs | 68 ++++++++++++ .../ResponsavelTarefaDb.cs | 26 +++++ .../StatusDeProspeccaoDb.cs | 37 +++++++ .../TarefaDb.cs | 123 +++++++++++++++++++++ .../TipoDeTarefaDb.cs | 37 +++++++ .../TrilhaDb.cs | 44 ++++++++ .../VinculoRepasseDb.cs | 38 +++++++ 17 files changed, 911 insertions(+) create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs create mode 100644 Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas') diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs new file mode 100644 index 0000000..2f0a9d7 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaDb.cs @@ -0,0 +1,67 @@ +using Gestor.Infrastructure.Entities.Generic; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class AgendaDb : EntityBase + { + public virtual string Bairro + { + get; + set; + } + + public virtual string Cep + { + get; + set; + } + + public virtual string Cidade + { + get; + set; + } + + public virtual string Complemento + { + get; + set; + } + + public virtual string Endereco + { + get; + set; + } + + public virtual string Estado + { + get; + set; + } + + public virtual string Nome + { + get; + set; + } + + public virtual string Numero + { + get; + set; + } + + public virtual string Observacao + { + get; + set; + } + + public AgendaDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs new file mode 100644 index 0000000..184e2eb --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaEmailDb.cs @@ -0,0 +1,19 @@ +using Gestor.Infrastructure.Entities.Generic; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class AgendaEmailDb : EmailBase + { + public virtual AgendaDb Agenda + { + get; + set; + } + + public AgendaEmailDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs new file mode 100644 index 0000000..0cd687f --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs @@ -0,0 +1,25 @@ +using Gestor.Infrastructure.Entities.Generic; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class AgendaTelefoneDb : TelefoneBase + { + public virtual AgendaDb Agenda + { + get; + set; + } + + public virtual string Observacao + { + get; + set; + } + + public AgendaTelefoneDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs new file mode 100644 index 0000000..ffc907e --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CategoriaTarefaDb.cs @@ -0,0 +1,19 @@ +using Gestor.Infrastructure.Entities.Generic; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class CategoriaTarefaDb : EntityBase + { + public virtual string Descricao + { + get; + set; + } + + public CategoriaTarefaDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs new file mode 100644 index 0000000..d211925 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/CredencialDb.cs @@ -0,0 +1,104 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Model.Common; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class CredencialDb : EntityBase + { + public virtual string Assinatura + { + get; + set; + } + + public virtual string Cabecalho + { + get; + set; + } + + public virtual string Descricao + { + get; + set; + } + + public virtual string Dominio + { + get; + set; + } + + public virtual string Email + { + get; + set; + } + + public virtual bool Excluido + { + get; + set; + } + + public virtual string Header + { + get; + set; + } + + public virtual long IdEmpresa + { + get; + set; + } + + public virtual long IdUsuario + { + get; + set; + } + + public virtual int Porta + { + get; + set; + } + + public virtual string Replyto + { + get; + set; + } + + public virtual bool Seguro + { + get; + set; + } + + public virtual string Senha + { + get; + set; + } + + public virtual TipoEmail Tipo + { + get; + set; + } + + public virtual string Usuario + { + get; + set; + } + + public CredencialDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs new file mode 100644 index 0000000..732fdfc --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/FaseDb.cs @@ -0,0 +1,37 @@ +using Gestor.Infrastructure.Entities.Generic; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class FaseDb : EntityBase + { + public virtual string Descricao + { + get; + set; + } + + public virtual DateTime? Expiracao + { + get; + set; + } + + public virtual string Titulo + { + get; + set; + } + + public virtual TrilhaDb Trilha + { + get; + set; + } + + public FaseDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs new file mode 100644 index 0000000..cea3290 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ImpostoDb.cs @@ -0,0 +1,56 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Infrastructure.Entities.Seguros; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class ImpostoDb : EntityBase + { + public virtual bool Ativo + { + get; + set; + } + + public virtual decimal Desconto + { + get; + set; + } + + public virtual decimal Ir + { + get; + set; + } + + public virtual decimal Iss + { + get; + set; + } + + public virtual decimal Outros + { + get; + set; + } + + public virtual RamoDb Ramo + { + get; + set; + } + + public virtual SeguradoraDb Seguradora + { + get; + set; + } + + public ImpostoDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs new file mode 100644 index 0000000..97e7735 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/LogEmailDb.cs @@ -0,0 +1,105 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Infrastructure.Entities.Seguros; +using Gestor.Model.Common; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class LogEmailDb : EntityBase + { + public virtual string Anexos + { + get; + set; + } + + public virtual string Assunto + { + get; + set; + } + + public virtual string Cco + { + get; + set; + } + + public virtual string Corpo + { + get; + set; + } + + public virtual CredencialDb Credencial + { + get; + set; + } + + public virtual DateTime Data + { + get; + set; + } + + public virtual string Destinatarios + { + get; + set; + } + + public virtual long EntityId + { + get; + set; + } + + public virtual string Ip + { + get; + set; + } + + public virtual string NomeMaquina + { + get; + set; + } + + public virtual Gestor.Model.Common.Relatorio Relatorio + { + get; + set; + } + + public virtual TipoTela Tela + { + get; + set; + } + + public virtual UsuarioDb Usuario + { + get; + set; + } + + public virtual string UsuarioMaquina + { + get; + set; + } + + public virtual string Versao + { + get; + set; + } + + public LogEmailDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs new file mode 100644 index 0000000..0c5e593 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/NotaFiscalDb.cs @@ -0,0 +1,74 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Infrastructure.Entities.Seguros; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class NotaFiscalDb : EntityBase + { + public virtual DateTime? Data + { + get; + set; + } + + public virtual EstipulanteDb Estipulante + { + get; + set; + } + + public virtual string Extrato + { + get; + set; + } + + public virtual long? IdExtrato + { + get; + set; + } + + public virtual decimal Ir + { + get; + set; + } + + public virtual decimal Iss + { + get; + set; + } + + public virtual string Obs + { + get; + set; + } + + public virtual SeguradoraDb Seguradora + { + get; + set; + } + + public virtual decimal ValorBruto + { + get; + set; + } + + public virtual decimal ValorLiquido + { + get; + set; + } + + public NotaFiscalDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs new file mode 100644 index 0000000..eb5a9d2 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/OrigemClienteDb.cs @@ -0,0 +1,32 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Infrastructure.Entities.Seguros; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class OrigemClienteDb : EntityBase + { + public virtual ClienteDb Cliente + { + get; + set; + } + + public virtual string Nome + { + get; + set; + } + + public virtual long TipoOrigem + { + get; + set; + } + + public OrigemClienteDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs new file mode 100644 index 0000000..beebff1 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ReciboDb.cs @@ -0,0 +1,68 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Model.Common; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class ReciboDb : EntityBase + { + public virtual DateTime? DataRecibo + { + get; + set; + } + + public virtual string DocumentoPagante + { + get; + set; + } + + public virtual string DocumentoRecebedor + { + get; + set; + } + + public virtual TipoPagamento? Pagamento + { + get; + set; + } + + public virtual string Pagante + { + get; + set; + } + + public virtual string Recebedor + { + get; + set; + } + + public virtual string Referente + { + get; + set; + } + + public virtual TipoRecibo? Tipo + { + get; + set; + } + + public virtual decimal Valor + { + get; + set; + } + + public ReciboDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs new file mode 100644 index 0000000..766eb0a --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/ResponsavelTarefaDb.cs @@ -0,0 +1,26 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Infrastructure.Entities.Seguros; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class ResponsavelTarefaDb : EntityBase + { + public virtual long IdTarefa + { + get; + set; + } + + public virtual UsuarioDb Usuario + { + get; + set; + } + + public ResponsavelTarefaDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs new file mode 100644 index 0000000..70f50d4 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/StatusDeProspeccaoDb.cs @@ -0,0 +1,37 @@ +using Gestor.Infrastructure.Entities.Generic; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class StatusDeProspeccaoDb : EntityBase + { + public virtual bool Ativo + { + get; + set; + } + + public virtual string Descricao + { + get; + set; + } + + public virtual bool Excluido + { + get; + set; + } + + public virtual string Nome + { + get; + set; + } + + public StatusDeProspeccaoDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs new file mode 100644 index 0000000..34906e7 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TarefaDb.cs @@ -0,0 +1,123 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Infrastructure.Entities.Seguros; +using Gestor.Model.Common; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class TarefaDb : EntityBase + { + public virtual DateTime Agendamento + { + get; + set; + } + + public virtual CategoriaTarefaDb Categoria + { + get; + set; + } + + public virtual string Cliente + { + get; + set; + } + + public virtual DateTime? Conclusao + { + get; + set; + } + + public virtual string Descricao + { + get; + set; + } + + public virtual string DescricaoInterna + { + get; + set; + } + + public virtual TipoTarefa Entidade + { + get; + set; + } + + public virtual FaseDb Fase + { + get; + set; + } + + public virtual long IdCliente + { + get; + set; + } + + public virtual long IdEntidade + { + get; + set; + } + + public virtual string Referencia + { + get; + set; + } + + public virtual bool? Restrito + { + get; + set; + } + + public virtual StatusTarefa Status + { + get; + set; + } + + public virtual TipoDeTarefaDb TipoDeTarefa + { + get; + set; + } + + public virtual string Titulo + { + get; + set; + } + + public virtual TrilhaDb Trilha + { + get; + set; + } + + public virtual UsuarioDb Usuario + { + get; + set; + } + + public virtual UsuarioDb UsuarioCadastro + { + get; + set; + } + + public TarefaDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs new file mode 100644 index 0000000..f6137ef --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TipoDeTarefaDb.cs @@ -0,0 +1,37 @@ +using Gestor.Infrastructure.Entities.Generic; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class TipoDeTarefaDb : EntityBase + { + public virtual bool Ativo + { + get; + set; + } + + public virtual string Descricao + { + get; + set; + } + + public virtual bool Excluido + { + get; + set; + } + + public virtual string Nome + { + get; + set; + } + + public TipoDeTarefaDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs new file mode 100644 index 0000000..337dd61 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/TrilhaDb.cs @@ -0,0 +1,44 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Model.Common; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class TrilhaDb : EntityBase + { + public virtual bool Ativo + { + get; + set; + } + + public virtual string Descricao + { + get; + set; + } + + public virtual int Intervalo + { + get; + set; + } + + public virtual TipoTrilha Tipo + { + get; + set; + } + + public virtual string Titulo + { + get; + set; + } + + public TrilhaDb() + { + } + } +} \ No newline at end of file diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs new file mode 100644 index 0000000..883430e --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/VinculoRepasseDb.cs @@ -0,0 +1,38 @@ +using Gestor.Infrastructure.Entities.Generic; +using Gestor.Infrastructure.Entities.Seguros; +using System; +using System.Runtime.CompilerServices; + +namespace Gestor.Infrastructure.Entities.Ferramentas +{ + public class VinculoRepasseDb : EntityBase + { + public virtual long IdRepasse + { + get; + set; + } + + public virtual RepasseDb RepasseVinculo + { + get; + set; + } + + public virtual TipoVendedorDb TipoVendedor + { + get; + set; + } + + public virtual TipoVendedorDb TipoVendedorVinculo + { + get; + set; + } + + public VinculoRepasseDb() + { + } + } +} \ No newline at end of file -- cgit v1.2.3