a4dc1313fc
- completata review iniziale datamodels - esclusione viste (almeno x ora)
15 lines
369 B
C#
15 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace StockMan.Data.DbModels
|
|
{
|
|
public partial class VItemFluxByLoc2Save
|
|
{
|
|
public int ItemId { get; set; }
|
|
public string LocationId { get; set; } = null!;
|
|
public int? NumMov { get; set; }
|
|
public int? TotQta { get; set; }
|
|
public decimal? TotVal { get; set; }
|
|
}
|
|
}
|