31 lines
909 B
C#
31 lines
909 B
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("RegistroControlli")]
|
|
public partial class RegistroControlliModel
|
|
{
|
|
#region Public Properties
|
|
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int IdxControllo { get; set; } = 0;
|
|
public DateTime DataOra { get; set; }
|
|
public string IdxMacchina { get; set; }
|
|
public int IdxOdl { get; set; }
|
|
public string CodArticolo { get; set; }
|
|
public int MatrOpr { get; set; }
|
|
public bool EsitoOk { get; set; }
|
|
public string Note { get; set; }
|
|
public string Operatore { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |