MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in - spostamento anagrafica flussi da auth a generale
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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.DbModels
|
||||
{
|
||||
public partial class CommentiModel
|
||||
{
|
||||
#region Public Properties
|
||||
|
||||
[MaxLength(50)]
|
||||
public string IdxMacchina { get; set; } = "NA";
|
||||
public DateTime InizioStato { get; set; } = DateTime.Now;
|
||||
public int IdxODL{ get; set; } = 0;
|
||||
|
||||
public string CodArticolo { get; set; } = "";
|
||||
|
||||
public string Value { get; set; } = "";
|
||||
|
||||
public string Operatore { get; set; } = "";
|
||||
|
||||
/// <summary>
|
||||
/// Hard coded 999
|
||||
/// </summary>
|
||||
[NotMapped]
|
||||
public int IdxTipo { get; set; } = 999;
|
||||
|
||||
#endregion Public Properties
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user