6c2e92d785
- modifiche DB e models - pagine in cui inserire
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
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("FLProcSetup")]
|
|
public partial class FLProcSetupModel
|
|
{
|
|
#region Public Properties
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int IdxFLProc { get; set; } = 0;
|
|
|
|
public int ProcOrder { get; set; } = 0;
|
|
|
|
public string IdxMacchina { get; set; } = "";
|
|
|
|
public string CodOp { get; set; } = "";
|
|
|
|
public string CodFluxOut { get; set; } = "";
|
|
|
|
public string CodVar01 { get; set; } = "";
|
|
|
|
public string CodVar02 { get; set; } = "";
|
|
|
|
public string CodVar03 { get; set; } = "";
|
|
|
|
public string CodVar04 { get; set; } = "";
|
|
|
|
public string CodVar05 { get; set; } = "";
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |