16 lines
		
	
	
		
			707 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			707 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| namespace GestionIntegral.Api.Models.Contables
 | |
| {
 | |
|     public class PagoDistribuidor // Corresponde a cue_PagosDistribuidor
 | |
|     {
 | |
|         public int IdPago { get; set; } // Id_Pago (PK, Identity)
 | |
|         public int IdDistribuidor { get; set; }
 | |
|         public DateTime Fecha { get; set; }
 | |
|         public string TipoMovimiento { get; set; } = string.Empty; // "Recibido" o "Realizado"
 | |
|         public int Recibo { get; set; } // Nro de recibo
 | |
|         public decimal Monto { get; set; }
 | |
|         public int IdTipoPago { get; set; } // FK a cue_dtTipopago
 | |
|         public string? Detalle { get; set; }
 | |
|         public int IdEmpresa { get; set; } // Empresa a la que corresponde el saldo afectado
 | |
|     }
 | |
| } |