using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace EgwCoreLib.Lux.Data.DbModel.Production
{
//
// This is here so CodeMaid doesn't reorganize this document
//
[Table("production_batch")]
public class ProductionBatchModel
{
///
/// ID del Batch di produzione
///
[Key]
public int ProductionBatchID { get; set; }
///
/// Descrizione
///
public string Description { get; set; } = "";
///
/// DataOra prevista esecuzione
///
public DateTime DueDate { get; set; } = DateTime.Today.AddMonths(1);
///
/// DataOra inizio
///
public DateTime? DateStart { get; set; } = null;
///
/// DataOra fine
///
public DateTime? DateEnd { get; set; } = null;
}
}