2026-01-27 02
This commit is contained in:
@@ -5,11 +5,11 @@ using PropertyChanged;
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class marcasgruas
|
||||
public partial class marcas
|
||||
{
|
||||
public int idMarca { get; set; }
|
||||
|
||||
public string? Marca { get; set; }
|
||||
|
||||
public virtual ICollection<modelosgruas> modelosgruas { get; set; } = new List<modelosgruas>();
|
||||
public virtual ICollection<productos> productos { get; set; } = new List<productos>();
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class modelosgruas
|
||||
{
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public string Modelo { get; set; } = null!;
|
||||
|
||||
public int idMarca { get; set; }
|
||||
|
||||
public DateTime? FechaAlta { get; set; }
|
||||
|
||||
public DateTime? FechaBaja { get; set; }
|
||||
|
||||
public virtual marcasgruas idMarcaNavigation { get; set; } = null!;
|
||||
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<tablaalturas> tablaalturas { get; set; } = new List<tablaalturas>();
|
||||
|
||||
public virtual ICollection<tablaplumas> tablaplumas { get; set; } = new List<tablaplumas>();
|
||||
|
||||
public virtual ICollection<versionesgruas> versionesgruas { get; set; } = new List<versionesgruas>();
|
||||
}
|
||||
@@ -23,7 +23,7 @@ public partial class productos
|
||||
|
||||
public string? ReferenciaFabrica { get; set; }
|
||||
|
||||
public int? idTipoProducto { get; set; }
|
||||
public int? TipoProducto { get; set; }
|
||||
|
||||
public string? CodigoBarras { get; set; }
|
||||
|
||||
@@ -37,7 +37,7 @@ public partial class productos
|
||||
|
||||
public int? idCodigoImpresion { get; set; }
|
||||
|
||||
public string? Marca { get; set; }
|
||||
public int? idMarca { get; set; }
|
||||
|
||||
public string? Modelo { get; set; }
|
||||
|
||||
@@ -79,6 +79,8 @@ public partial class productos
|
||||
|
||||
public int idEmpresa { get; set; }
|
||||
|
||||
public double? UltimoPrecioCompra { get; set; }
|
||||
|
||||
public virtual ICollection<articulos> articulos { get; set; } = new List<articulos>();
|
||||
|
||||
public virtual ICollection<detallepresupuesto> detallepresupuesto { get; set; } = new List<detallepresupuesto>();
|
||||
@@ -93,11 +95,17 @@ public partial class productos
|
||||
|
||||
public virtual familias? idFamiliaNavigation { get; set; }
|
||||
|
||||
public virtual marcas? idMarcaNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioCreadorNavigation { get; set; }
|
||||
|
||||
public virtual usuarios? idUsuarioModificadorNavigation { get; set; }
|
||||
|
||||
public virtual modelosgruas? modelosgruas { get; set; }
|
||||
|
||||
public virtual ICollection<stocks> stocks { get; set; } = new List<stocks>();
|
||||
|
||||
public virtual ICollection<tablaalturas> tablaalturas { get; set; } = new List<tablaalturas>();
|
||||
|
||||
public virtual ICollection<tablaplumas> tablaplumas { get; set; } = new List<tablaplumas>();
|
||||
|
||||
public virtual ICollection<versionesgruas> versionesgruas { get; set; } = new List<versionesgruas>();
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ public partial class tablaalturas
|
||||
{
|
||||
public int idAltura { get; set; }
|
||||
|
||||
public int idModelo { get; set; }
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public int? idVersion { get; set; }
|
||||
|
||||
@@ -17,7 +17,7 @@ public partial class tablaalturas
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual modelosgruas idModeloNavigation { get; set; } = null!;
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual versionesgruas? idVersionNavigation { get; set; }
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ public partial class tablaplumas
|
||||
{
|
||||
public int idPluma { get; set; }
|
||||
|
||||
public int idModelo { get; set; }
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public double Pluma { get; set; }
|
||||
|
||||
@@ -19,5 +19,5 @@ public partial class tablaplumas
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual modelosgruas idModeloNavigation { get; set; } = null!;
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
}
|
||||
|
||||
63
bdGrupoSanchoToro/db/v_apuntesagrupados.cs
Normal file
63
bdGrupoSanchoToro/db/v_apuntesagrupados.cs
Normal file
@@ -0,0 +1,63 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class v_apuntesagrupados
|
||||
{
|
||||
public int idCuenta { get; set; }
|
||||
|
||||
public double? HaberEnero { get; set; }
|
||||
|
||||
public double? HaberFebrero { get; set; }
|
||||
|
||||
public double? HaberMarzo { get; set; }
|
||||
|
||||
public double? HaberAbril { get; set; }
|
||||
|
||||
public double? HaberMayo { get; set; }
|
||||
|
||||
public double? HaberJunio { get; set; }
|
||||
|
||||
public double? HaberJulio { get; set; }
|
||||
|
||||
public double? HaberAgosto { get; set; }
|
||||
|
||||
public double? HaberSeptiembre { get; set; }
|
||||
|
||||
public double? HaberOctubre { get; set; }
|
||||
|
||||
public double? HaberNoviembre { get; set; }
|
||||
|
||||
public double? HaberDiciembre { get; set; }
|
||||
|
||||
public double? DebeEnero { get; set; }
|
||||
|
||||
public double? DebeFebrero { get; set; }
|
||||
|
||||
public double? DebeMarzo { get; set; }
|
||||
|
||||
public double? DebeAbril { get; set; }
|
||||
|
||||
public double? DebeMayo { get; set; }
|
||||
|
||||
public double? DebeJunio { get; set; }
|
||||
|
||||
public double? DebeJulio { get; set; }
|
||||
|
||||
public double? DebeAgosto { get; set; }
|
||||
|
||||
public double? DebeSeptiembre { get; set; }
|
||||
|
||||
public double? DebeOctubre { get; set; }
|
||||
|
||||
public double? DebeNoviembre { get; set; }
|
||||
|
||||
public double? DebeDiciembre { get; set; }
|
||||
|
||||
public double? TotalDebe { get; set; }
|
||||
|
||||
public double? TotalHaber { get; set; }
|
||||
}
|
||||
79
bdGrupoSanchoToro/db/v_apuntesextendidos.cs
Normal file
79
bdGrupoSanchoToro/db/v_apuntesextendidos.cs
Normal file
@@ -0,0 +1,79 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class v_apuntesextendidos
|
||||
{
|
||||
public int idApunte { get; set; }
|
||||
|
||||
public int idCuenta { get; set; }
|
||||
|
||||
public string? Concepto { get; set; }
|
||||
|
||||
public string? NumeroDocumento { get; set; }
|
||||
|
||||
public double Debe { get; set; }
|
||||
|
||||
public double Haber { get; set; }
|
||||
|
||||
public int idAsiento { get; set; }
|
||||
|
||||
public int? idConcepto { get; set; }
|
||||
|
||||
public DateTime? FechaPunteo { get; set; }
|
||||
|
||||
public int? TipoDocumento { get; set; }
|
||||
|
||||
public int? idConciliacion { get; set; }
|
||||
|
||||
public double? HaberEnero { get; set; }
|
||||
|
||||
public double? HaberFebrero { get; set; }
|
||||
|
||||
public double? HaberMarzo { get; set; }
|
||||
|
||||
public double? HaberAbril { get; set; }
|
||||
|
||||
public double? HaberMayo { get; set; }
|
||||
|
||||
public double? HaberJunio { get; set; }
|
||||
|
||||
public double? HaberJulio { get; set; }
|
||||
|
||||
public double? HaberAgosto { get; set; }
|
||||
|
||||
public double? HaberSeptiembre { get; set; }
|
||||
|
||||
public double? HaberOctubre { get; set; }
|
||||
|
||||
public double? HaberNoviembre { get; set; }
|
||||
|
||||
public double? HaberDiciembre { get; set; }
|
||||
|
||||
public double? DebeEnero { get; set; }
|
||||
|
||||
public double? DebeFebrero { get; set; }
|
||||
|
||||
public double? DebeMarzo { get; set; }
|
||||
|
||||
public double? DebeAbril { get; set; }
|
||||
|
||||
public double? DebeMayo { get; set; }
|
||||
|
||||
public double? DebeJunio { get; set; }
|
||||
|
||||
public double? DebeJulio { get; set; }
|
||||
|
||||
public double? DebeAgosto { get; set; }
|
||||
|
||||
public double? DebeSeptiembre { get; set; }
|
||||
|
||||
public double? DebeOctubre { get; set; }
|
||||
|
||||
public double? DebeNoviembre { get; set; }
|
||||
|
||||
public double? DebeDiciembre { get; set; }
|
||||
}
|
||||
@@ -9,13 +9,13 @@ public partial class versionesgruas
|
||||
{
|
||||
public int idVersion { get; set; }
|
||||
|
||||
public int idModelo { get; set; }
|
||||
public int idProducto { get; set; }
|
||||
|
||||
public int Version { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public virtual modelosgruas idModeloNavigation { get; set; } = null!;
|
||||
public virtual productos idProductoNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<tablaalturas> tablaalturas { get; set; } = new List<tablaalturas>();
|
||||
}
|
||||
|
||||
103
bdGrupoSanchoToro/db/vf_cuentas.cs
Normal file
103
bdGrupoSanchoToro/db/vf_cuentas.cs
Normal file
@@ -0,0 +1,103 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdGrupoSanchoToro.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class vf_cuentas
|
||||
{
|
||||
public int idCuenta { get; set; }
|
||||
|
||||
public string? Mote { get; set; }
|
||||
|
||||
public string Denominacion { get; set; } = null!;
|
||||
|
||||
public double PresupuestoEnero { get; set; }
|
||||
|
||||
public double PresupuestoFebrero { get; set; }
|
||||
|
||||
public double PresupuestoMarzo { get; set; }
|
||||
|
||||
public double PresupuestoAbril { get; set; }
|
||||
|
||||
public double PresupuestoMayo { get; set; }
|
||||
|
||||
public double PresupuestoJunio { get; set; }
|
||||
|
||||
public double PresupuestoJulio { get; set; }
|
||||
|
||||
public double PresupuestoAgosto { get; set; }
|
||||
|
||||
public double PresupuestoSeptiembre { get; set; }
|
||||
|
||||
public double PresupuestoOctubre { get; set; }
|
||||
|
||||
public double PresupuestoNoviembre { get; set; }
|
||||
|
||||
public double PresupuestoDiciembre { get; set; }
|
||||
|
||||
public string? Observaciones { get; set; }
|
||||
|
||||
public string NumeroCuenta { get; set; } = null!;
|
||||
|
||||
public int idEjercicio { get; set; }
|
||||
|
||||
public int? idEmpresaAmortizacion { get; set; }
|
||||
|
||||
public bool EsCuentaFinal { get; set; }
|
||||
|
||||
public double? HaberEnero { get; set; }
|
||||
|
||||
public double? HaberFebrero { get; set; }
|
||||
|
||||
public double? HaberMarzo { get; set; }
|
||||
|
||||
public double? HaberAbril { get; set; }
|
||||
|
||||
public double? HaberMayo { get; set; }
|
||||
|
||||
public double? HaberJunio { get; set; }
|
||||
|
||||
public double? HaberJulio { get; set; }
|
||||
|
||||
public double? HaberAgosto { get; set; }
|
||||
|
||||
public double? HaberSeptiembre { get; set; }
|
||||
|
||||
public double? HaberOctubre { get; set; }
|
||||
|
||||
public double? HaberNoviembre { get; set; }
|
||||
|
||||
public double? HaberDiciembre { get; set; }
|
||||
|
||||
public double? DebeEnero { get; set; }
|
||||
|
||||
public double? DebeFebrero { get; set; }
|
||||
|
||||
public double? DebeMarzo { get; set; }
|
||||
|
||||
public double? DebeAbril { get; set; }
|
||||
|
||||
public double? DebeMayo { get; set; }
|
||||
|
||||
public double? DebeJunio { get; set; }
|
||||
|
||||
public double? DebeJulio { get; set; }
|
||||
|
||||
public double? DebeAgosto { get; set; }
|
||||
|
||||
public double? DebeSeptiembre { get; set; }
|
||||
|
||||
public double? DebeOctubre { get; set; }
|
||||
|
||||
public double? DebeNoviembre { get; set; }
|
||||
|
||||
public double? DebeDiciembre { get; set; }
|
||||
|
||||
public double TotalDebe { get; set; }
|
||||
|
||||
public double TotalHaber { get; set; }
|
||||
|
||||
public string? Ejercicio { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user