nidapeng
2024-04-08 16dfc0bd700f1ca940df3a298a252bb6c22e4192
server/platform/src/main/java/com/doumee/api/business/ApplyChangeController.java
@@ -78,6 +78,13 @@
    public ApiResponse<String> getChangeUnitSignLink (@RequestBody ApplyChange model, HttpServletResponse response) {
        return ApiResponse.success( applyChangeService.getSignLinkChangeUnit(model));
    }
    @ApiOperation("列表查询")
    @PostMapping("/list")
    @RequiresPermissions("business:applychange:query")
    public ApiResponse<List<ApplyChange>> list (@RequestBody ApplyChange applyChange) {
        return ApiResponse.success(applyChangeService.findListForCompany(applyChange));
    }
    @ApiOperation("根据ID删除")
    @GetMapping("/delete/{id}")
    @RequiresPermissions("business:applychange:delete")