18 lines
		
	
	
		
			690 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			690 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| namespace GestionIntegral.Api.Models.Distribucion
 | |
| {
 | |
|     public class ControlDevolucionesHistorico // Corresponde a dist_dtCtrlDevoluciones_H
 | |
|     {
 | |
|         // No hay PK explícita en _H
 | |
|         public int Id_Control { get; set; } // Coincide con columna en _H
 | |
|         public int Id_Empresa { get; set; }
 | |
|         public DateTime Fecha { get; set; }
 | |
|         public int Entrada { get; set; }
 | |
|         public int Sobrantes { get; set; }
 | |
|         public string? Detalle { get; set; }
 | |
|         public int SinCargo { get; set; }
 | |
|         public int Id_Usuario { get; set; }
 | |
|         public DateTime FechaMod { get; set; }
 | |
|         public string TipoMod { get; set; } = string.Empty;
 | |
|     }
 | |
| } |