Files
mapo-core/MP.Data/DbModels/ElencoConfermeProdModel.cs

38 lines
1.2 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DbModels
{
[Table("ElencoConfermeProd")]
public partial class ElencoConfermeProdModel
{
#region Public Properties
public DateTime DataOraConf { get; set; } = DateTime.Now;
[MaxLength(50), Column("idxMacchina")]
public string IdxMacchina { get; set; } = "";
public int MatrApp { get; set; } = 0;
[Column("dataFrom")]
public DateTime DataFrom { get; set; } = DateTime.Now;
[Column("dataTo")]
public DateTime DataTo { get; set; } = DateTime.Now;
[Column("pezziConf")]
public int PezziConf { get; set; } = 0;
[Column("pezziScar")]
public int PezziScar { get; set; } = 0;
[Column("pezziDaRilav")]
public int PezziDaRilav { get; set; } = 0;
[MaxLength(50)]
public string CommessaEsterna { get; set; } = "";
public int TipoConf { get; set; } = 1;
#endregion Public Properties
}
}