25 lines
945 B
C#
25 lines
945 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Models.Impresion
|
||
|
|
{
|
||
|
|
public class StockBobinaHistorico
|
||
|
|
{
|
||
|
|
public int Id_Bobina { get; set; } // Columna en _H
|
||
|
|
public int Id_TipoBobina { get; set; }
|
||
|
|
public string NroBobina { get; set; } = string.Empty;
|
||
|
|
public int Peso { get; set; }
|
||
|
|
public int Id_Planta { get; set; }
|
||
|
|
public int Id_EstadoBobina { get; set; }
|
||
|
|
public string Remito { get; set; } = string.Empty;
|
||
|
|
public DateTime FechaRemito { get; set; }
|
||
|
|
public DateTime? FechaEstado { get; set; }
|
||
|
|
public int? Id_Publicacion { get; set; }
|
||
|
|
public int? Id_Seccion { get; set; }
|
||
|
|
public string? Obs { get; set; }
|
||
|
|
|
||
|
|
// Auditoría
|
||
|
|
public int Id_Usuario { get; set; }
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty; // "Ingreso", "Estado Cambiado", "Actualizacion", "Eliminada"
|
||
|
|
}
|
||
|
|
}
|