|  |  |  | 
|---|
|  |  |  | 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") | 
|---|