Files
StockMan/StockManMVC/Models/ItemStockStatus.cs
T
Samuele E. Locatelli b83dff00a1 inizio aggiunta vista stock detail
da collegare x navigazione...
2016-09-21 18:22:16 +02:00

33 lines
1.2 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 ItemID { get; set; }
public string Descr { get; set; }
public string CodInt { get; set; }
public string Family { 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 Nullable<int> QtaPend { get; set; }
public Nullable<decimal> ValPend { get; set; }
public Nullable<int> QtaNew { get; set; }
public Nullable<decimal> ValNew { get; set; }
}
}