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; } }