Skip to content

Commit

Permalink
Add Cota Parlamentar para Pará, Paraíba, Piauí e Rio Grande do Norte;
Browse files Browse the repository at this point in the history
Registros com os dados iguais serão unificados em vez de ignorados;
Ajustes gerais;
  • Loading branch information
VanderleiDenir committed Jul 9, 2024
1 parent 053ebb8 commit 6f4e06d
Show file tree
Hide file tree
Showing 21 changed files with 1,520 additions and 172 deletions.
2 changes: 1 addition & 1 deletion OPS.Core/Entity/DeputadoEstadual.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class DeputadoEstadual
public uint? Gabinete { get; set; }

[Column("id_partido")]
public ushort IdPartido { get; set; }
public ushort? IdPartido { get; set; }

[Column("id_estado")]
public ushort IdEstado { get; set; }
Expand Down
3 changes: 3 additions & 0 deletions OPS.Core/Entity/DeputadoEstadualDespesaTemp.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
using System;
using System.Text.Json.Serialization;
using Dapper;

namespace OPS.Core.Entity
{
[Table("cl_despesa_temp", Schema = "ops_tmp")]
public class CamaraEstadualDespesaTemp
{
[JsonIgnore]
[Column("id")]
public int Id { get; set; }

Expand Down Expand Up @@ -48,6 +50,7 @@ public class CamaraEstadualDespesaTemp
[Column("favorecido")]
public string Favorecido { get; set; }

[JsonIgnore]
[Column("hash")]
public byte[] Hash { get; set; }
}
Expand Down
Loading

0 comments on commit 6f4e06d

Please sign in to comment.