Files
mapo-core/MP.Data/DbModels/ElencoLottiModel.cs
Samuele E. Locatelli 50d65eebaa MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
2025-03-08 10:40:09 +01:00

48 lines
1.5 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.DbModels
{
[Table("ElencoLotti")]
public partial class ElencoLottiModel
{
#region Public Properties
[Key]
public string Lotto { get; set; } = "";
public int IdxODL { get; set; } = 0;
[MaxLength(50)]
public string RifExt { get; set; } = "";
[MaxLength(50)]
public string TipoLotto { get; set; } = "";
[MaxLength(50), Column("CodArt")]
public string CodArticolo { get; set; } = "";
[MaxLength(50)]
public string CodStato { get; set; } = "";
[MaxLength(50)]
public string Origine { get; set; } = "";
public DateTime? DtCrea { get; set; }
[MaxLength(250)]
public string Note { get; set; } = "";
public decimal QtaOrig { get; set; } = 0;
public int NumUdc { get; set; } = 1;
public decimal QtaCurr { get; set; } = 0;
public DateTime? DtMod { get; set; }
public bool Attivo { get; set; } = false;
[MaxLength(250)]
public string DescrArt { get; set; } = "";
[MaxLength(50)]
public string CodArtExt { get; set; } = "";
[MaxLength(50)]
public string DescStato { get; set; } = "";
#endregion Public Properties
}
}