namespace WCS.WorkEngineering.WebApi.Models.WMS.Request { /// /// 环形库申请码垛出库任务 /// public class RingApplyPalletizingStockOutRequest { /// /// 环形库申请码垛出库任务 /// /// /// /// public RingApplyPalletizingStockOutRequest(string wareHouseCode, string equCode, string device) { WareHouseCode = wareHouseCode; EquCode = equCode; Device = device; } /// /// 仓库编码 /// public string WareHouseCode { get; set; } /// /// 设备编号 /// public string EquCode { get; set; } /// /// 机械臂 /// public string Device { get; set; } } }