Files
Samuele E. Locatelli 1378595033 ulteriore refresh
2017-10-16 14:52:34 +02:00

40 lines
1.5 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// Codice generato da un modello.
//
// Le modifiche manuali a questo file potrebbero causare un comportamento imprevisto dell'applicazione.
// Se il codice viene rigenerato, le modifiche manuali al file verranno sovrascritte.
// </auto-generated>
//------------------------------------------------------------------------------
namespace StockManMVC.Models
{
using System;
using System.Collections.Generic;
public partial class ItemFlux
{
public int ID { get; set; }
public int ItemID { get; set; }
public string LocationID { get; set; }
public string MovTypeID { get; set; }
public string ExtLocationID { get; set; }
public System.DateTime dtMov { get; set; }
public int Qta { get; set; }
public decimal TotValue { get; set; }
public decimal UnitVal { get; set; }
public string Note { get; set; }
public Nullable<System.DateTime> dtExport { get; set; }
public string OperatorID { get; set; }
public string CodDoc { get; set; }
public string ModOperatorID { get; set; }
public virtual Location Location { get; set; }
public virtual MovType MovType { get; set; }
public virtual Item Item { get; set; }
public virtual Operator Operator { get; set; }
public virtual Location Location1 { get; set; }
public virtual Operator Operator1 { get; set; }
}
}