37 lines
912 B
C#
37 lines
912 B
C#
using System;
|
|
using System.Linq;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
|
|
namespace GWMS.Data.DatabaseModels
|
|
{
|
|
/// <summary>
|
|
/// Tabella Plants
|
|
/// </summary>
|
|
[Table("PlantDetail")]
|
|
public class PlantDetailModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int PlantId { get; set; }
|
|
|
|
[MaxLength(100)]
|
|
public string PlantCode { get; set; } = "";
|
|
|
|
[MaxLength(250)]
|
|
public string PlantDesc { get; set; } = "";
|
|
|
|
public double LevelMax { get; set; } = 29999;
|
|
|
|
public double LevelReorder { get; set; } = 0;
|
|
|
|
public double OrderQtyStd { get; set; } = 1000;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |