kazelee
2025-05-20 ef839d119eec2c28fac5f5ba175d71f926afae44
Controllers/DebugController.cs
@@ -19,6 +19,7 @@
using HH.WCS.Mobox3.AnGang.Debug;
using static HH.WCS.Mobox3.AnGang.Dtos.Request.DebugRequest;
using static HH.WCS.Mobox3.AnGang.Dtos.Response.DebugResponse;
using static HH.WCS.Mobox3.AnGang.Models.DebugModel;
namespace HH.WCS.Mobox3.AnGang.Controllers
{
@@ -55,8 +56,8 @@
        /// <returns></returns>
        [HttpPost]
        [Route("InsertLocCntrCg")]
        public string InsertLocCntrCg() {
            return DebugService.InsertLocCntrCg();
        public string InsertLocCntrCg(LocCntrCg model) {
            return DebugService.InsertLocCntrCg(model);
        }
        [HttpPost]