Skip to content

Commit

Permalink
修复表单管理删除时报错
Browse files Browse the repository at this point in the history
  • Loading branch information
Hooper authored and gitee-org committed Jan 19, 2022
1 parent 4b9073e commit be02587
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public R<Boolean> save(@RequestBody GenFormConf formConf) {
@SysLog("通过id删除生成记录")
@DeleteMapping("/{id}")
@PreAuthorize("@pms.hasPermission('gen_form_del')")
public R<Boolean> removeById(@PathVariable Integer id) {
public R<Boolean> removeById(@PathVariable Long id) {
return R.ok(genRecordService.removeById(id));
}

Expand Down

0 comments on commit be02587

Please sign in to comment.