Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
33
bdAsegasa/db/vp_liquidacionescompaniasrecibos.cs
Normal file
33
bdAsegasa/db/vp_liquidacionescompaniasrecibos.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class vp_liquidacionescompaniasrecibos
|
||||
{
|
||||
public int idRecibo { get; set; }
|
||||
|
||||
public string? NumeroRecibo { get; set; }
|
||||
|
||||
public double? TotalRecibo { get; set; }
|
||||
|
||||
public string? CodigoRecibo { get; set; }
|
||||
|
||||
public DateOnly? FechaBaja { get; set; }
|
||||
|
||||
public DateOnly FechaEfecto { get; set; }
|
||||
|
||||
public DateOnly FechaVencimiento { get; set; }
|
||||
|
||||
public string? Tomador { get; set; }
|
||||
|
||||
public string? CIFTomador { get; set; }
|
||||
|
||||
public string? NumeroPoliza { get; set; }
|
||||
|
||||
public string? Matricula { get; set; }
|
||||
|
||||
public DateOnly FechaLiquidacionCia { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user