app退料联调
This commit is contained in:
parent
47640f43aa
commit
8ea66e6165
|
|
@ -188,9 +188,9 @@ public class BackApplyInfoController extends BaseController {
|
||||||
@PreventRepeatSubmit
|
@PreventRepeatSubmit
|
||||||
@RequiresPermissions("back:info:remove")
|
@RequiresPermissions("back:info:remove")
|
||||||
@SysLog(title = "退料任务", businessType = OperaType.DELETE, logType = 1,module = "仓储管理->删除退料任务")
|
@SysLog(title = "退料任务", businessType = OperaType.DELETE, logType = 1,module = "仓储管理->删除退料任务")
|
||||||
@DeleteMapping("/{id}")
|
@PostMapping("/deleteById")
|
||||||
public AjaxResult remove(@PathVariable Long id) {
|
public AjaxResult remove(@RequestBody BackApplyInfo backApplyInfo) {
|
||||||
return backApplyInfoService.deleteBackApplyInfoById(id);
|
return backApplyInfoService.deleteBackApplyInfoById(backApplyInfo.getId());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue