adding despesas e receitas
This commit is contained in:
@@ -40,6 +40,7 @@ namespace OpenCand.Core.Models
|
||||
public string Apelido { get; set; }
|
||||
public string SqCandidato { get; set; }
|
||||
public int Ano { get; set; }
|
||||
public string Turno { get; set; }
|
||||
public string TipoEleicao { get; set; }
|
||||
public string SiglaUF { get; set; }
|
||||
public string NomeUE { get; set; }
|
||||
|
25
OpenCand.Core/Models/Despesa.cs
Normal file
25
OpenCand.Core/Models/Despesa.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace OpenCand.Core.Models
|
||||
{
|
||||
public class Despesa
|
||||
{
|
||||
public Guid IdDespesa { get; set; }
|
||||
public Guid IdCandidato { get; set; }
|
||||
public int Ano { get; set; }
|
||||
public int Turno { get; set; }
|
||||
|
||||
public string SqCandidato { get; set; }
|
||||
|
||||
public string SgPartido { get; set; }
|
||||
public string TipoFornecedor { get; set; }
|
||||
public string CpfFornecedor { get; set; }
|
||||
public string CnpjFornecedor { get; set; }
|
||||
public string NomeFornecedor { get; set; }
|
||||
public string NomeFornecedorRFB { get; set; }
|
||||
public string MunicipioFornecedor { get; set; }
|
||||
public string TipoDocumento { get; set; }
|
||||
public DateTime? DataDespesa { get; set; }
|
||||
public string OrigemDespesa { get; set; }
|
||||
public string Descricao { get; set; }
|
||||
public float Valor { get; set; }
|
||||
}
|
||||
}
|
26
OpenCand.Core/Models/Receita.cs
Normal file
26
OpenCand.Core/Models/Receita.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
namespace OpenCand.Core.Models
|
||||
{
|
||||
public class Receita
|
||||
{
|
||||
public Guid IdReceita { get; set; }
|
||||
public Guid IdCandidato { get; set; }
|
||||
public int Ano { get; set; }
|
||||
public int Turno { get; set; }
|
||||
|
||||
public string SqCandidato { get; set; }
|
||||
|
||||
public string SgPartido { get; set; }
|
||||
public string FonteReceita { get; set; }
|
||||
public string OrigemReceita { get; set; }
|
||||
public string NaturezaReceita { get; set; }
|
||||
public string EspecieReceita { get; set; }
|
||||
public string CpfDoador { get; set; }
|
||||
public string CnpjDoador { get; set; }
|
||||
public string NomeDoador { get; set; }
|
||||
public string NomeDoadorRFB { get; set; }
|
||||
public string MunicipioDoador { get; set; }
|
||||
public DateTime? DataReceita { get; set; }
|
||||
public string Descricao { get; set; }
|
||||
public float Valor { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user