Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Contables/NotaCreditoDebitoHistorico.cs

20 lines
810 B
C#
Raw Normal View History

using System;
namespace GestionIntegral.Api.Models.Contables
{
public class NotaCreditoDebitoHistorico // Corresponde a cue_CreditosDebitos_H
{
// No hay PK explícita en _H
public int Id_Nota { get; set; } // Coincide con columna en _H
public string Destino { get; set; } = string.Empty;
public int Id_Destino { get; set; }
public string? Referencia { get; set; }
public string Tipo { get; set; } = string.Empty;
public DateTime Fecha { get; set; }
public decimal Monto { get; set; }
public string? Observaciones { 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;
}
}