package com.doumee.api.business;
|
|
import com.doumee.api.BaseController;
|
import com.doumee.core.annotation.excel.ExcelExporter;
|
import com.doumee.core.annotation.pr.PreventRepeat;
|
import com.doumee.core.model.ApiResponse;
|
import com.doumee.core.model.PageWrap;
|
import com.doumee.core.model.PageData;
|
import com.doumee.dao.business.model.ApplyChange;
|
import com.doumee.service.business.ApplyChangeService;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* @author 江蹄蹄
|
* @date 2024/01/16 10:03
|
*/
|
@Api(tags = "加减保换厂申请信息表")
|
@RestController
|
@RequestMapping("/business/applyChange")
|
public class ApplyChangeController extends BaseController {
|
|
@Autowired
|
private ApplyChangeService applyChangeService;
|
|
@PreventRepeat
|
@ApiOperation("新建")
|
@PostMapping("/create")
|
@RequiresPermissions("business:applychange:create")
|
public ApiResponse create(@RequestBody ApplyChange applyChange) {
|
return ApiResponse.success(applyChangeService.create(applyChange));
|
}
|
@PreventRepeat
|
@ApiOperation("平台退回投保")
|
@PostMapping("/back")
|
@RequiresPermissions("business:applychange:back")
|
public ApiResponse back(@RequestBody ApplyChange applyChange) {
|
return ApiResponse.success(applyChangeService.back(applyChange));
|
}
|
@PreventRepeat
|
@ApiOperation("平台处理退回申请")
|
@PostMapping("/dealBackApply")
|
@RequiresPermissions("business:applychange:dealBackApply")
|
public ApiResponse dealBackApply(@RequestBody ApplyChange applyChange) {
|
return ApiResponse.success(applyChangeService.dealBackApply(applyChange));
|
}
|
@PreventRepeat
|
@ApiOperation("平台上传批单")
|
@PostMapping("/uploadPidan")
|
@RequiresPermissions("business:applychange:uploadPidan")
|
public ApiResponse uploadPidan(@RequestBody ApplyChange applyChange) {
|
return ApiResponse.success(applyChangeService.uploadPidan(applyChange));
|
}
|
@PreventRepeat
|
@ApiOperation("平台修改批单")
|
@PostMapping("/editPidan")
|
@RequiresPermissions("business:applychange:editPidan")
|
public ApiResponse editPidan(@RequestBody ApplyChange applyChange) {
|
return ApiResponse.success(applyChangeService.editPidan(applyChange));
|
}
|
|
@ApiOperation("根据ID删除")
|
@GetMapping("/delete/{id}")
|
@RequiresPermissions("business:applychange:delete")
|
public ApiResponse deleteById(@PathVariable Integer id) {
|
applyChangeService.deleteById(id);
|
return ApiResponse.success(null);
|
}
|
|
@ApiOperation("批量删除")
|
@GetMapping("/delete/batch")
|
@RequiresPermissions("business:applychange:delete")
|
public ApiResponse deleteByIdInBatch(@RequestParam String ids) {
|
String [] idArray = ids.split(",");
|
List<Integer> idList = new ArrayList<>();
|
for (String id : idArray) {
|
idList.add(Integer.valueOf(id));
|
}
|
applyChangeService.deleteByIdInBatch(idList);
|
return ApiResponse.success(null);
|
}
|
|
@ApiOperation("根据ID修改")
|
@PostMapping("/updateById")
|
@RequiresPermissions("business:applychange:update")
|
public ApiResponse updateById(@RequestBody ApplyChange applyChange) {
|
applyChangeService.updateById(applyChange);
|
return ApiResponse.success(null);
|
}
|
|
@ApiOperation("分页查询")
|
@PostMapping("/page")
|
@RequiresPermissions("business:applychange:query")
|
public ApiResponse<PageData<ApplyChange>> findPage (@RequestBody PageWrap<ApplyChange> pageWrap) {
|
return ApiResponse.success(applyChangeService.findPage(pageWrap));
|
}
|
|
@ApiOperation("导出Excel")
|
@PostMapping("/exportExcel")
|
@RequiresPermissions("business:applychange:exportExcel")
|
public void exportExcel (@RequestBody PageWrap<ApplyChange> pageWrap, HttpServletResponse response) {
|
ExcelExporter.build(ApplyChange.class).export(applyChangeService.findPage(pageWrap).getRecords(), "加减保换厂申请信息表", response);
|
}
|
|
@ApiOperation("根据ID查询")
|
@GetMapping("/{id}")
|
@RequiresPermissions("business:applychange:query")
|
public ApiResponse findById(@PathVariable Integer id) {
|
return ApiResponse.success(applyChangeService.findById(id));
|
}
|
}
|