|
@@ -73,7 +73,7 @@ public class UpdateAppController extends BaseController
|
|
|
* 修改【请填写功能名称】
|
|
|
*/
|
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
|
|
|
- @PutMapping
|
|
|
+ @PostMapping("/put")
|
|
|
public AjaxResult edit(@RequestBody UpdateApp updateApp)
|
|
|
{
|
|
|
return toAjax(updateAppService.updateUpdateApp(updateApp));
|
|
@@ -83,7 +83,7 @@ public class UpdateAppController extends BaseController
|
|
|
* 删除【请填写功能名称】
|
|
|
*/
|
|
|
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
|
|
|
- @DeleteMapping("/{ids}")
|
|
|
+ @GetMapping("/delete/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
{
|
|
|
return toAjax(updateAppService.deleteUpdateAppByIds(ids));
|