Files
mapo-core/MP.Data/DatabaseModels/AnagLottoModel.cs
T
2022-12-06 11:27:28 +01:00

34 lines
1.1 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;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DatabaseModels
{
[Table("ElencoLotti")]
public class AnagLottoModel
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public string Lotto { get; set; }
public int IdxODL { get; set; }
public string RifExt { get; set; }
public string TipoLotto { get; set; }
public string CodArt { get; set; }
public string CodStato { get; set; }
public string Origine { get; set; }
public DateTime DtCrea { get; set; }
public string Note { get; set; }
public decimal QtaOrig { get; set; }
public int NumUdc { get; set; }
public decimal QtaCurr { get; set; }
public DateTime DtMod { get; set; }
public bool Attivo { get; set; }
}
}