Files
mapo-core/MP.Data/DatabaseModels/lottoModel.cs
T
2022-11-23 10:49:11 +01:00

31 lines
992 B
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 MP.Data.DatabaseModels
{
[Table("ElencoLotti")]
public class lottoModel
{
[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; }
}
}