14 lines
573 B
C#
14 lines
573 B
C#
|
|
using System;
|
||
|
|
namespace GestionIntegral.Api.Models.Distribucion
|
||
|
|
{
|
||
|
|
public class ControlDevoluciones // Corresponde a dist_dtCtrlDevoluciones
|
||
|
|
{
|
||
|
|
public int IdControl { get; set; } // Id_Control (PK, Identity)
|
||
|
|
public int IdEmpresa { get; set; }
|
||
|
|
public DateTime Fecha { get; set; }
|
||
|
|
public int Entrada { get; set; } // Cantidad total de ejemplares que ingresaron como devolución
|
||
|
|
public int Sobrantes { get; set; }
|
||
|
|
public string? Detalle { get; set; }
|
||
|
|
public int SinCargo { get; set; } // DEFAULT 0 NOT NULL
|
||
|
|
}
|
||
|
|
}
|