kyy
2025-08-05 6581234907def80093c3e9b4cdbc864714ed3f59
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; }
}