using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 物料库存请求结果 /// public class MaterialStockRequestResult { /// /// 出热物料号 /// public string heatingOutCode { get; set; } /// /// 装炉量 /// public int quantityPerCharge { get; set; } /// /// 数量 /// public int counts { get; set; } } }