Files
StockMan/StockManMVC/Models/ItemStockStatus.cs
T
Samuele E. Locatelli 05791423bd Aggiunta gestione tab fam articoli
Refresh tab e metodi in genere...
2016-09-22 10:56:14 +02:00

36 lines
1.3 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace StockManMVC.Models
{
using System;
using System.Collections.Generic;
public partial class ItemStockStatus
{
public int ID { get; set; }
public string LocationID { get; set; }
public string LocationDesc { get; set; }
public int ItemID { get; set; }
public string Descr { get; set; }
public string CodInt { get; set; }
public string ItemFamilyID { get; set; }
public string CodExt { get; set; }
public string DescrExt { get; set; }
public int QtaMin { get; set; }
public int QtaBatch { get; set; }
public int QtyConf { get; set; }
public decimal ValConf { get; set; }
public int QtaPend { get; set; }
public Nullable<decimal> ValPend { get; set; }
public Nullable<int> QtaNew { get; set; }
public Nullable<decimal> ValNew { get; set; }
}
}