using System; using System.Collections.Generic; using System.Text; using wms.dto.response.sx; namespace wms.service.Help.LayerPacking.model { /// /// 仓库库存分配结果 /// public class StockAllocationResult { /// /// 是否成功 /// public bool IsSuccess { get; set; } /// /// 错误信息 /// public string ErrorMessage { get; set; } /// /// 箱 /// public LayerPackingBoxInfo BoxInfo { get; set; } } }