50d65eebaa
- renaming classi gestione DbModels in - spostamento anagrafica flussi da auth a generale
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
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
|
|
}
|
|
} |