Files
StockMan/StockManMVC/Models/vItemFlux2Save.cs
T
2016-09-29 23:03:16 +02:00

26 lines
872 B
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 vItemFlux2Save
{
public int ItemID { get; set; }
public Nullable<int> NumMov { get; set; }
public Nullable<int> TotQta { get; set; }
public Nullable<decimal> TotValCar { get; set; }
public Nullable<int> TotQtaCar { get; set; }
public virtual Item Item { get; set; }
}
}