40 lines
970 B
C#
40 lines
970 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
|
|
namespace GWMS.Data.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella Setup aprametri
|
|
/// </summary>
|
|
[Table("ParamSet")]
|
|
public class ParamSetModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int ParamSetId { get; set; }
|
|
|
|
public int PlantId { get; set; } = 0;
|
|
|
|
public string ParamUid { get; set; } = "";
|
|
|
|
|
|
public DateTime Scadenza { get; set; } = DateTime.Today;
|
|
|
|
public decimal TargetVal { get; set; } = 0;
|
|
|
|
[MaxLength(250)]
|
|
public string Note { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |