16 lines
788 B
C#
16 lines
788 B
C#
|
|
using System;
|
||
|
|
namespace GestionIntegral.Api.Models.Contables
|
||
|
|
{
|
||
|
|
public class NotaCreditoDebito // Corresponde a cue_CreditosDebitos
|
||
|
|
{
|
||
|
|
public int IdNota { get; set; } // Id_Nota (PK, Identity)
|
||
|
|
public string Destino { get; set; } = string.Empty; // "Distribuidores" o "Canillas"
|
||
|
|
public int IdDestino { get; set; } // Id del distribuidor o canillita
|
||
|
|
public string? Referencia { get; set; } // varchar(50), NULL
|
||
|
|
public string Tipo { get; set; } = string.Empty; // "Debito" o "Credito"
|
||
|
|
public DateTime Fecha { get; set; }
|
||
|
|
public decimal Monto { get; set; }
|
||
|
|
public string? Observaciones { get; set; } // varchar(250), NULL
|
||
|
|
public int IdEmpresa { get; set; } // Empresa a la que corresponde el saldo afectado
|
||
|
|
}
|
||
|
|
}
|