后台-退料申请与审核

This commit is contained in:
bns_han 2023-12-23 15:55:22 +08:00
parent 49e1b410b6
commit a22ee17c23
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ public class BackApplyController extends BaseController {
*/
@ApiOperation(value = "获取在用物料列表")
@GetMapping("/getMaterialList")
public TableDataInfo getMaterialList(@RequestBody BackApplyInfo bean)
public TableDataInfo getMaterialList(BackApplyInfo bean)
{
startPage();
List<BackApplyInfo> list = backApplyService.getMaterialList(bean);
@ -64,7 +64,7 @@ public class BackApplyController extends BaseController {
*/
@ApiOperation(value = "退料申请详情")
@GetMapping("/getView")
public TableDataInfo getView(@RequestBody BackApplyInfo bean)
public TableDataInfo getView(BackApplyInfo bean)
{
startPage();
List<BackApplyInfo> list = backApplyService.getView(bean);
@ -86,7 +86,7 @@ public class BackApplyController extends BaseController {
*/
@ApiOperation(value = "退料申请删除")
@GetMapping("/del")
public AjaxResult del(@RequestBody BackApplyInfo bean)
public AjaxResult del(BackApplyInfo bean)
{
return backApplyService.del(bean);
}