TAB:
- aggiunta gest tab gruppi2operatore - metodi estrazione macchine x operatori - test filtro TCiclo
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
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.DatabaseModels
|
||||
{
|
||||
[Table("Gruppi2Operatori")]
|
||||
public partial class Gruppi2OperModel
|
||||
{
|
||||
#region Public Properties
|
||||
public int MatrOpr { get; set; } = 0;
|
||||
|
||||
public string CodGruppo { get; set; } = "";
|
||||
|
||||
/// <summary>
|
||||
/// Navigazione oggetto Operatori
|
||||
/// </summary>
|
||||
[ForeignKey("MatrOpr")]
|
||||
public virtual AnagOperatoriModel OperNav { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// Navigazione oggetto Machine
|
||||
/// </summary>
|
||||
[ForeignKey("CodGruppo")]
|
||||
public virtual AnagGruppi GruppiNav { get; set; } = null!;
|
||||
|
||||
#endregion Public Properties
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user