MP.DATA, riorganizzazioni varie:

- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
This commit is contained in:
Samuele E. Locatelli
2025-03-08 10:40:09 +01:00
parent f33a17c156
commit 50d65eebaa
227 changed files with 400 additions and 367 deletions
+57
View File
@@ -0,0 +1,57 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace MP.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
public partial class VExpInveSession
{
#region Public Properties
[Column("InveSessID")]
public int InveSessId { get; set; }
public string Description { get; set; }
public string UserCrea { get; set; }
public DateTime DtStart { get; set; } = new DateTime(1900, 01, 01);
public DateTime DtEnd { get; set; } = new DateTime(2099, 12, 31);
public string CodMag { get; set; }
public string DescMag { get; set; }
[Column("ScanID")]
public int ScanId { get; set; }
public DateTime DtScan { get; set; }
public string ScanValue { get; set; }
public string Lotto { get; set; }
public string CodArticolo { get; set; }
[MaxLength(250)]
public string DescrArt { get; set; }
[MaxLength(50)]
public string CodArtExt { get; set; }
[MaxLength(50)]
public string CodStato { get; set; }
public decimal Qty { get; set; }
public string UserScan { get; set; }
public string Note { get; set; }
#endregion Public Properties
}
}