Files
2023-07-03 18:59:09 +02:00

39 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SHERPA.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
public partial class vFattAperteModel
{
[Key, Column("id_fatt")]
public int idxDoc { get; set; } = 0;
public string idxGruppo { get; set; } = "";
public string RagSoc { get; set; } = "";
public int num { get; set; } = 0;
public int anno { get; set; } = 0;
public int Trim { get; set; } = 0;
public int Mese { get; set; } = 0;
[Column("emessa")]
public DateTime emesso { get; set; } = DateTime.Today.AddYears(-30);
public decimal netto { get; set; } = 0;
public decimal iva { get; set; } = 0;
public decimal importo { get; set; } = 0;
[Column("pagata")]
public DateTime? DataPagam { get; set; }
public string tipo { get; set; } = "";
[Column("codCli")]
public int idxCli { get; set; } = 0;
//public string codCli { get; set; } = "";
public decimal totPagato { get; set; } = 0;
public decimal totScadenze { get; set; } = 0;
}
}