a4dc1313fc
- completata review iniziale datamodels - esclusione viste (almeno x ora)
16 lines
399 B
C#
16 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace StockMan.Data.DbModels
|
|
{
|
|
public partial class VItemFlux2Save
|
|
{
|
|
public int ItemId { get; set; }
|
|
public int? NumMov { get; set; }
|
|
public int? TotQta { get; set; }
|
|
public int? TotQtaOrd { get; set; }
|
|
public int? TotQtaCar { get; set; }
|
|
public decimal? TotValCar { get; set; }
|
|
}
|
|
}
|