kyy
2025-07-14 fbbb2e3801dc7a1073d555278f92353d5c14ab86
1
2
3
4
5
6
7
8
9
10
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; }
}