using System; using System.Collections.Generic; using System.Text; using wms.dto.response.sx; namespace wms.service.Help.LayerPacking.model { /// /// 重绕处理结果 /// public class ReworkProcessResult { /// /// 重绕库存 /// public List ReworkStock { get; set; } /// /// 正常库存 /// public IEnumerable NormalStock { get; set; } } }