a4dc1313fc
- completata review iniziale datamodels - esclusione viste (almeno x ora)
27 lines
941 B
C#
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; }
|
|
}
|
|
}
|