111
啊鑫
2025-07-30 7517c0cbcddb428b95498af990a4831769a9d7e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace MES.Service.Dto.webApi.RealTimeInventory;
 
// 库存项数据模型
public class InventoryItem
{
    public string FmaterialNumber { get; set; }
    public decimal Fqty { get; set; }
    public string FstockNumber { get; set; }
    public decimal FmaterialId { get; set; }
    public decimal FstockorgId { get; set; }
    
    public string  Fstockstatusnumber{ get; set; }
    
    public string  Fstockstatusname{ get; set; }
}