24 lines
1.0 KiB
C#
24 lines
1.0 KiB
C#
|
|
using System;
|
||
|
|
namespace GestionIntegral.Api.Models.Contables
|
||
|
|
{
|
||
|
|
public class CierreCuentaCorrienteHistorico // Corresponde a cue_CierresCuentaCorriente_H
|
||
|
|
{
|
||
|
|
public int Id_Historial { get; set; }
|
||
|
|
public int Id_Cierre { get; set; }
|
||
|
|
public int Id_Distribuidor { get; set; }
|
||
|
|
public int Id_Empresa { get; set; }
|
||
|
|
public DateTime FechaCorte { get; set; }
|
||
|
|
public DateTime FechaCierre { get; set; }
|
||
|
|
public decimal SaldoCierre { get; set; }
|
||
|
|
public string Estado { get; set; } = string.Empty;
|
||
|
|
public string? Justificacion { get; set; }
|
||
|
|
public int Id_Usuario_Cierre { get; set; }
|
||
|
|
public int? Id_Usuario_Anula { get; set; }
|
||
|
|
public DateTime? FechaAnulacion { get; set; }
|
||
|
|
public string? Justificacion_Anulacion { get; set; }
|
||
|
|
public string TipoMod { get; set; } = string.Empty; // 'Creacion' | 'Reapertura' | 'Modificacion'
|
||
|
|
public int Id_Usuario_Mod { get; set; }
|
||
|
|
public DateTime FechaMod { get; set; }
|
||
|
|
}
|
||
|
|
}
|