Files

81 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagMan.Core.DTO
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
public class ItemDTO
{
/// <summary>
/// Ext Ref Key Materiale (DB) / CLOUD
/// </summary>
public int MatCloudId { get; set; } = 0;
/// <summary>
/// Ext Ref Key Materiale (DB) / istanza locale
/// </summary>
public int MatLocalId { get; set; } = 0;
/// <summary>
/// Primary Key del RawItem di riferimento (se zero da verificare con quote) / CLOUD
/// </summary>
public int RawItemCloudId { get; set; } = 0;
/// <summary>
/// Primary Key RawItem (DB) / istanza locale
/// </summary>
public int RawItemLocalId { get; set; } = 0;
/// <summary>
/// Boolean for logical delete
/// </summary>
public bool IsDeleted { get; set; } = false;
/// <summary>
/// Check if is a Remnant
/// </summary>
public bool IsRemn { get; set; } = false;
/// <summary>
/// Location
/// </summary>
public string Location { get; set; } = "";
/// <summary>
/// Qty available on wharehouse
/// </summary>
public int QtyAvail { get; set; } = 0;
/// <summary>
/// Item's Thikness
/// </summary>
public decimal HMm { get; set; } = 0;
/// <summary>
/// Item's Lenght
/// </summary>
public decimal LMm { get; set; } = 0;
/// <summary>
/// Item's Width
/// </summary>
public decimal WMm { get; set; } = 0;
/// <summary>
/// Note (optional)
/// </summary>
public string Note { get; set; } = "";
/// <summary>
/// Codice QR/Matrix Item
/// </summary>
public string ItemDtmx { get; set; } = "";
}
}