|
@@ -34,8 +34,8 @@ public class AlgorithmLibraryController {
|
|
|
* 新增/修改算法
|
|
|
*/
|
|
|
@RequestMapping("addOrUpdate")
|
|
|
- public ResponseBodyVO<Object> addOrUpdate(@RequestBody AlgorithmParameter param) {
|
|
|
- return algorithmService.addOrUpdate(param);
|
|
|
+ public ResponseBodyVO<Object> addOrUpdate(@RequestBody AlgorithmParameter algorithmParameter) {
|
|
|
+ return algorithmService.addOrUpdate(algorithmParameter);
|
|
|
}
|
|
|
|
|
|
|