yanjinhui
2025-03-17 b8510ca5d1e56ef78cd27c45b6bd65a2c13f6b27
项目代码/WIDESEAWCS_Server 正式/WIDESEAWCS_Server/Controllers/SerialPort/PutakeController.cs
@@ -19,22 +19,23 @@
        }
        [HttpPost,Route("ChangeStatus"),AllowAnonymous]
        public WebResponseContent ChangeStatus(int id)
        public WebResponseContent ChangeStatus(string id,string gruops)
        {
            return Service.ChangeStatus(id);
            return Service.ChangeStatus(id,gruops);
        }
        [HttpGet,Route("ShowPutake"),AllowAnonymous]
        public WebResponseContent ShowPutake(string group_dg)
        public WebResponseContent ShowPutake([FromBody] string group_dg)
        {
            return Service.ShowPutake(group_dg);
        }
        [HttpGet,Route("GetNjtake"),AllowAnonymous]
        public WebResponseContent GetNjtake(string njid)
        public WebResponseContent GetNjtake([FromBody] string njid)
        {
            return Service.GetNjtake(njid);
        }
    }
}