35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Table("InveScanData")]
|
|
public class ScanDataModel
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int ScanID { get; set; }
|
|
public DateTime DtScan { get; set; } = DateTime.Now;
|
|
public string UserScan { get; set; } = "";
|
|
public string ScanValue { get; set; } = "";
|
|
public bool IsForced { get; set; } = false;
|
|
public string CodArticolo { get; set; } = "";
|
|
public string Lotto { get; set; } = "";
|
|
public string RifExt { get; set; } = "";
|
|
public decimal Qty { get; set; } = 0;
|
|
public string Note { get; set; } = "";
|
|
public bool IsKnown { get; set; } = false;
|
|
public bool IsUnique { get; set; } = false;
|
|
public int InveSessID { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Navigazione oggetto Inventory Session
|
|
/// </summary>
|
|
[ForeignKey("InveSessID")]
|
|
public virtual InventorySessionModel InveSessNav { get; set; } = null!;
|
|
}
|
|
}
|