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