添加问题新增校验

This commit is contained in:
梁琦涛
2024-10-08 18:10:55 +08:00
parent bf9be359d4
commit 3efe9f4bb7
@@ -115,7 +115,7 @@ public class ProcessPartTypeApplyRecordController {
@ApiOperationSupport(order = 5)
@PostMapping(value = "/add")
// @RequiresPermissions("keyPartBindingManage:add")
public Result<T> add(@Validated @RequestBody ProcessPartTypeApplyRecord processPartTypeApplyRecord) {
public Result<T> add(@RequestBody ProcessPartTypeApplyRecord processPartTypeApplyRecord) {
String id = processPartTypeApplyRecordService.add(processPartTypeApplyRecord);
return Result.OK(id);
}