38 lines
1.4 KiB
C#
38 lines
1.4 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 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 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; }
|
|
}
|
|
}
|