fix: 78170

企标计划-删除 点击删除,出现错误提示信息
This commit is contained in:
2023-11-07 13:53:49 +08:00
parent 029e16dc36
commit fd88c26f3e
@@ -80,8 +80,8 @@ public class EnterpriseStandardPlanController extends JeroController<EnterpriseS
@RequiresPermissions("enterpriseStandardLibrary:plan:delete")
@AutoLog(value = "企标计划-通过id删除")
@ApiOperation(value = "企标计划-通过id删除", notes = "企标计划-通过id删除")
@PostMapping(value = "/delete")
public Result<T> deleteEN(String id) {
@GetMapping(value = "/delete/{id}")
public Result<T> deleteEN(@PathVariable String id) {
if (StringUtils.isBlank(id)) {
throw new JeroBootException(MessageUtils.getMessage(ResultCommon.PARAMETERS_CANNOT_BE_NULL));
}