28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Auditoria
|
||
|
|
{
|
||
|
|
public class EntradaSalidaDistHistorialDto
|
||
|
|
{
|
||
|
|
// Campos de la tabla _H (dist_EntradasSalidas_H)
|
||
|
|
public int Id_Parte { get; set; } // ID del movimiento original
|
||
|
|
public int Id_Publicacion { get; set; }
|
||
|
|
// public string NombrePublicacion { get; set; } // Opcional
|
||
|
|
public int Id_Distribuidor { get; set; }
|
||
|
|
// public string NombreDistribuidor { get; set; } // Opcional
|
||
|
|
public DateTime Fecha { get; set; } // Fecha original del movimiento
|
||
|
|
public string TipoMovimiento { get; set; } = string.Empty;
|
||
|
|
public int Cantidad { get; set; }
|
||
|
|
public int Remito { get; set; }
|
||
|
|
public string? Observacion { get; set; }
|
||
|
|
public int Id_Precio { get; set; }
|
||
|
|
public int Id_Recargo { get; set; }
|
||
|
|
public int Id_Porcentaje { get; set; }
|
||
|
|
|
||
|
|
// Campos de auditoría
|
||
|
|
public int Id_Usuario { get; set; }
|
||
|
|
public string NombreUsuarioModifico { get; set; } = string.Empty;
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|