42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static MagMan.Core.Enums;
|
|
|
|
namespace MagMan.Data.Tenant.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
/// <summary>
|
|
/// Tabella esplosione richieste come items
|
|
/// </summary>
|
|
[Table("RequestDetail")]
|
|
public class RequestDetailModel
|
|
{
|
|
/// <summary>
|
|
/// Riferimento Richiesta
|
|
/// </summary>
|
|
public int RequestId { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Riferimento Item specifico
|
|
/// </summary>
|
|
public int ItemID { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Quantità necessaria
|
|
/// </summary>
|
|
public int QtyReq { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// Stato richeista
|
|
/// </summary>
|
|
public RequestStatus ReqState { get; set; } = RequestStatus.None;
|
|
}
|
|
}
|