- 2026-04-24 1.0.0.0 Primera versión estable

This commit is contained in:
2026-04-29 15:34:38 +02:00
parent 6a31fe40be
commit 7b0e488994
15 changed files with 37 additions and 52 deletions

View File

@@ -21,7 +21,7 @@ namespace bdAsegasa.db
public int? idRecibo { get; set; }
public DateOnly FechaInicioAmortizacion { get; set; }
public DateOnly FechaFinAmortizacion { get; set; }
public double PorcentajeAnual { get; set; }
public double? PorcentajeAnual { get; set; }
public DateOnly? FechaBaja { get; set; }
public int? idMotivoBaja { get; set; }
public int idEmpresa { get; set; }

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
namespace bdAsegasa.db
@@ -22,6 +23,7 @@ namespace bdAsegasa.db
}
}
[NotMapped]
public int? ValorEntero1
{
get

View File

@@ -16,7 +16,7 @@
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.3" />
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
<PackageReference Include="tsEFCore8" Version="1.0.5" />
<PackageReference Include="tsUtilidades" Version="1.1.10" />
<PackageReference Include="tsUtilidades" Version="1.1.14" />
</ItemGroup>
<ItemGroup>

View File

@@ -15,7 +15,7 @@ public partial class amortizacionrecibos
public DateOnly FechaFinAmortizacion { get; set; }
public double PorcentajeAnual { get; set; }
public double? PorcentajeAnual { get; set; }
public DateOnly? FechaBaja { get; set; }

View File

@@ -39,5 +39,7 @@ public partial class pagostelematicos
public string? Telefono { get; set; }
public int TipoPago { get; set; }
public virtual recibos? idReciboNavigation { get; set; }
}

View File

@@ -3618,6 +3618,7 @@ public partial class gestionasegasaContext : DbContext
entity.Property(e => e.Referencia).HasMaxLength(100);
entity.Property(e => e.RespuestaPasarela).HasMaxLength(4096);
entity.Property(e => e.Telefono).HasMaxLength(20);
entity.Property(e => e.TipoPago).HasColumnType("int(11)");
entity.Property(e => e.idEmailAvisoAPagador).HasColumnType("int(11)");
entity.Property(e => e.idEmailAvisoContabilidad).HasColumnType("int(11)");
entity.Property(e => e.idRecibo).HasColumnType("int(11)");

View File

@@ -5,7 +5,7 @@
"FilterSchemas": false,
"IncludeConnectionString": false,
"IrregularWords": null,
"MinimumProductVersion": "2.6.1248",
"MinimumProductVersion": "2.6.1382",
"ModelNamespace": null,
"OutputContextPath": "dbcontext",
"OutputPath": "db",
@@ -817,5 +817,6 @@
"UseSchemaNamespaces": false,
"UseSpatial": false,
"UseT4": true,
"UseT4Split": false
"UseT4Split": false,
"UseTypedTvpParameters": true
}