杨前锦
2025-07-01 a93b0e99036c24b9bd58c79bf5e7364b1ba28bae
HH.WCS.Mobox3/HH.WCS.Mobox3.FJJT/api/WmsController.cs
@@ -159,7 +159,7 @@
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
      /*  [Route("notifyAlarm")]*/
        /*  [Route("notifyAlarm")]  */
        public ResponseResult unBindingLoc(LocModel model)
        {
            LogHelper.Info("UnBindingLoc 入参:" + JsonConvert.SerializeObject(model), "WMS");
@@ -221,6 +221,42 @@
            return result;
        }
        //--------------------------------- 提供给斜裁的接口 --------------------------------
        /// <summary>
        /// 9.斜裁出库任务
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost]
        /* [Route("notifyAlarm")]*/
        public ResponseResult createXcItemOutStockTask(XcItemOutStockModel model)
        {
            LogHelper.Info("XcItemOutStock 入参:" + JsonConvert.SerializeObject(model), "WMS");
            ResponseResult result = new ResponseResult();
            result = ApiHelper.createXcItemOutStockTask(model);
            LogHelper.Info("XcItemOutStock 出参:" + JsonConvert.SerializeObject(result), "WMS");
            return result;
        }
        public class XcItemOutStockModel
        {
            public string reqId { get; set; }
            public string reqTime { get; set; }
            public string startLoc { get; set; }
            public string eqNo { get; set; }  // 设备号
            public string palletId { get; set; }  // 托盘号
            /*public string lotName { get; set; }  // 批次条码
            public string yclBatch { get; set; }  // 原材料批次号
            public string materialCode { get; set; }  // 物料编码
            public float qty { get; set; }  // 物料数量
            public string productionDate { get; set; }  // 生产日期(yyyy-MM-dd HH:mm:ss)
            public string qcStatus { get; set; }  // 检验状态 0:未检验 1:合格,2:不合格
            public string shelfLifeDate { get; set; }  // 最长停放日期
            public string minShelfLife_Date { get; set; }  // 最小停放日期*/
        }
        public class LocStateFeedBackModel 
        {
            public string reqId { get; set; }