3a5b77314a
- DTO e MOdelli NON riorganizzabili - refresh globale ordinamenti - test rebuild
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
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.DatabaseModels
|
|
{
|
|
[Table("ODL")]
|
|
public partial class ODLModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int IdxOdl { get; set; }
|
|
[MaxLength(50)]
|
|
public string CodArticolo { get; set; } = "";
|
|
[MaxLength(50)]
|
|
public string IdxMacchina { get; set; }
|
|
public int NumPezzi { get; set; }
|
|
public decimal Tcassegnato { get; set; }
|
|
public DateTime? DataInizio { get; set; }
|
|
public DateTime? DataFine { get; set; }
|
|
[MaxLength(2500)]
|
|
public string Note { get; set; } = "";
|
|
[MaxLength(50)]
|
|
public string KeyRichiesta { get; set; }
|
|
public int PzPallet { get; set; } = 1;
|
|
[MaxLength(50)]
|
|
public string CodCli { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |