42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
[Table("PODL")]
|
|
public partial class PODLModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int IdxPromessa { get; set; }
|
|
[MaxLength(50)]
|
|
public string KeyRichiesta { get; set; }
|
|
[MaxLength(50)]
|
|
public string KeyBCode { get; set; }
|
|
public bool Attivabile { get; set; } = false;
|
|
public int IdxOdl { get; set; } = 0;
|
|
[MaxLength(50)]
|
|
public string CodArticolo { get; set; } = "";
|
|
[MaxLength(50)]
|
|
public string CodGruppo { get; set; } = "";
|
|
[MaxLength(50)]
|
|
public string IdxMacchina { get; set; }
|
|
public int NumPezzi { get; set; } = 1;
|
|
public decimal Tcassegnato { get; set; } = 1;
|
|
public DateTime? DueDate { get; set; }
|
|
public int Priorita { get; set; } = 1;
|
|
public int PzPallet { get; set; } = 1;
|
|
[MaxLength(2500)]
|
|
public string Note { get; set; } = "";
|
|
[MaxLength(50)]
|
|
public string CodCli { get; set; } = "";
|
|
public DateTime InsertDate { get; set; } = DateTime.Now;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |