Merge branch 'Release/FixOrdineExportCsv'

This commit is contained in:
Samuele Locatelli
2022-12-22 15:22:05 +01:00
+34 -27
View File
@@ -4,47 +4,54 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace MP.Data.DatabaseModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
public partial class VExpInveSession
{
#region Public Properties
[MaxLength(50)]
public string CodArtExt { get; set; }
public string CodArticolo { get; set; }
public string CodMag { get; set; }
[MaxLength(50)]
public string CodStato { get; set; }
public string DescMag { get; set; }
[MaxLength(250)]
public string DescrArt { get; set; }
public string Description { get; set; }
public DateTime DtEnd { get; set; } = new DateTime(2099, 12, 31);
public DateTime DtScan { get; set; }
public DateTime DtStart { get; set; } = new DateTime(1900, 01, 01);
[Column("InveSessID")]
public int InveSessId { get; set; }
public string Lotto { get; set; }
public string Note { get; set; }
public decimal Qty { 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 UserCrea { 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
}
}