- 2026-04-24 1.0.0.0 Primera versión estable
This commit is contained in:
@@ -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; }
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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; }
|
||||
|
||||
|
||||
@@ -39,5 +39,7 @@ public partial class pagostelematicos
|
||||
|
||||
public string? Telefono { get; set; }
|
||||
|
||||
public int TipoPago { get; set; }
|
||||
|
||||
public virtual recibos? idReciboNavigation { get; set; }
|
||||
}
|
||||
|
||||
@@ -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)");
|
||||
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user