20 lines
797 B
C#
20 lines
797 B
C#
|
|
using System;
|
||
|
|
namespace GestionIntegral.Api.Models.Contables
|
||
|
|
{
|
||
|
|
public class PagoDistribuidorHistorico // Corresponde a cue_PagosDistribuidor_H
|
||
|
|
{
|
||
|
|
// No hay PK explícita en _H
|
||
|
|
public int Id_Pago { get; set; } // Coincide con columna en _H
|
||
|
|
public int Id_Distribuidor { get; set; }
|
||
|
|
public DateTime Fecha { get; set; }
|
||
|
|
public string TipoMovimiento { get; set; } = string.Empty;
|
||
|
|
public int Recibo { get; set; }
|
||
|
|
public decimal Monto { get; set; }
|
||
|
|
public int Id_TipoPago { get; set; }
|
||
|
|
public string? Detalle { get; set; }
|
||
|
|
public int Id_Empresa { get; set; }
|
||
|
|
public int Id_Usuario { get; set; }
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|