22 lines
818 B
C#
22 lines
818 B
C#
|
|
namespace GestionIntegral.Api.Models.Distribucion
|
||
|
|
{
|
||
|
|
public class PrecioHistorico
|
||
|
|
{
|
||
|
|
public int IdPrecio { get; set; } // FK a dist_Precios.Id_Precio
|
||
|
|
public int IdPublicacion { get; set; }
|
||
|
|
public DateTime VigenciaD { get; set; }
|
||
|
|
public DateTime? VigenciaH { get; set; }
|
||
|
|
public decimal? Lunes { get; set; }
|
||
|
|
public decimal? Martes { get; set; }
|
||
|
|
public decimal? Miercoles { get; set; }
|
||
|
|
public decimal? Jueves { get; set; }
|
||
|
|
public decimal? Viernes { get; set; }
|
||
|
|
public decimal? Sabado { get; set; }
|
||
|
|
public decimal? Domingo { get; set; }
|
||
|
|
|
||
|
|
// Campos de Auditoría
|
||
|
|
public int Id_Usuario { get; set; }
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|