qiuyao
2025-03-22 5ae3e9f5a944a887ab022bf1b0a5afdee20af70e
ÏîÄ¿´úÂë/WIDESEAWCS_Server Õýʽ/WIDESEAWCS_Server/Controllers/SerialPort/ProcessController.cs
@@ -20,10 +20,14 @@
        }
        /// <summary>
        /// èŽ·å–å¥—ç­’æ•°é‡
        /// </summary>
        /// <returns>返回班组、总步骤、套筒数量</returns>
        [HttpGet, Route("GetSleeveandStep"), AllowAnonymous]
        public WebResponseContent GetSleeveandStep(string grops)
        public WebResponseContent GetSleeveandStep()
        {
            return Service.GetSleeveandStep(grops);
            return Service.GetSleeveandStep();
        }
        /// <summary>
@@ -74,5 +78,17 @@
            return Service.PreviousProcess(setpDTO);
        }
        /// <summary>
        /// è¯»å–当前工艺步骤的扭力值与次数
        /// </summary>
        /// <param name="grop"></param>
        /// <param name="setnum"></param>
        /// <returns></returns>
        [HttpPost, Route("GetValueandNumber"), AllowAnonymous]
        public WebResponseContent GetValueandNumber(string grop, int setnum)
        {
            return Service.GetValueandNumber(grop, setnum);
        }
    }
}