| | |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "app管理-通过id删除", notes = "app管理-通过id删除") |
| | | @DeleteMapping(value = "/delete") |
| | | @PostMapping(value = "/delete") |
| | | public R<?> delete(@RequestParam(name = "id", required = true) String id) { |
| | | return R.data(appManageService.removeById(id)); |
| | | } |
| | |
| | | * |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "app管理-分页列表查询", notes = "app管理-分页列表查询") |
| | | @ApiOperation(value = "app管理-查询最新一条的数据", notes = "app管理-查询最新一条的数据") |
| | | @GetMapping(value = "/getLastInfo") |
| | | public R getLastInfo() { |
| | | AppManage appManage = appManageService.getLastInfo(); |