Files
StockMan/StockMan.Data/DbModels/VItemStockStatus.cs
T
Samuele Locatelli a4dc1313fc StockMan Data:
- completata review iniziale datamodels
- esclusione viste (almeno x ora)
2023-02-06 20:07:03 +01:00

27 lines
941 B
C#

using System;
using System.Collections.Generic;
namespace StockMan.Data.DbModels
{
public partial class VItemStockStatus
{
public int Id { get; set; }
public string LocationId { get; set; } = null!;
public string LocationDesc { get; set; } = null!;
public int ItemId { get; set; }
public string Descr { get; set; } = null!;
public string CodInt { get; set; } = null!;
public string ItemFamilyId { get; set; } = null!;
public string CodExt { get; set; } = null!;
public string DescrExt { get; set; } = null!;
public int QtaMin { get; set; }
public int QtaBatch { get; set; }
public int QtyConf { get; set; }
public decimal ValConf { get; set; }
public int QtyPend { get; set; }
public decimal? ValPend { get; set; }
public int? QtaNew { get; set; }
public decimal? ValNew { get; set; }
}
}