- 移除CreditCompetitor、CreditCustomer、CreditExternal、CreditRiskRelation、CreditSupplier和CreditUser实体中companyName字段的@TableField(exist = false)注解 - 在各控制器的convertImportParamToEntity方法中添加CreditCompany::setCompanyName方法引用 - 从companyId获取对应的企业名称并设置到fixedCompanyName变量中 - 更新导入逻辑中的注释说明,明确name和companyName字段的不同用途 - 在导入过程中当companyName为空且存在固定公司名称时进行赋值处理
360 lines
15 KiB
Java
360 lines
15 KiB
Java
package com.gxwebsoft.credit.controller;
|
||
|
||
import com.gxwebsoft.common.core.annotation.OperationLog;
|
||
import com.gxwebsoft.common.core.web.ApiResult;
|
||
import com.gxwebsoft.common.core.web.BaseController;
|
||
import com.gxwebsoft.common.core.web.BatchParam;
|
||
import com.gxwebsoft.common.core.web.PageResult;
|
||
import com.gxwebsoft.common.system.entity.User;
|
||
import com.gxwebsoft.credit.entity.CreditCompany;
|
||
import com.gxwebsoft.credit.entity.CreditRiskRelation;
|
||
import com.gxwebsoft.credit.param.CreditRiskRelationImportParam;
|
||
import com.gxwebsoft.credit.param.CreditRiskRelationParam;
|
||
import com.gxwebsoft.credit.service.CreditCompanyService;
|
||
import com.gxwebsoft.credit.service.CreditCompanyRecordCountService;
|
||
import com.gxwebsoft.credit.service.CreditRiskRelationService;
|
||
import io.swagger.v3.oas.annotations.Operation;
|
||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||
import org.apache.poi.ss.usermodel.Workbook;
|
||
import org.springframework.security.access.prepost.PreAuthorize;
|
||
import org.springframework.util.CollectionUtils;
|
||
import org.springframework.web.bind.annotation.*;
|
||
import org.springframework.web.multipart.MultipartFile;
|
||
|
||
import javax.annotation.Resource;
|
||
import javax.servlet.http.HttpServletResponse;
|
||
import java.io.IOException;
|
||
import java.util.ArrayList;
|
||
import java.util.HashSet;
|
||
import java.util.List;
|
||
import java.util.Map;
|
||
import java.util.Set;
|
||
|
||
/**
|
||
* 风险关系表控制器
|
||
*
|
||
* @author 科技小王子
|
||
* @since 2025-12-19 19:51:41
|
||
*/
|
||
@Tag(name = "风险关系表管理")
|
||
@RestController
|
||
@RequestMapping("/api/credit/credit-risk-relation")
|
||
public class CreditRiskRelationController extends BaseController {
|
||
@Resource
|
||
private CreditRiskRelationService creditRiskRelationService;
|
||
|
||
@Resource
|
||
private BatchImportSupport batchImportSupport;
|
||
|
||
@Resource
|
||
private CreditCompanyService creditCompanyService;
|
||
|
||
@Resource
|
||
private CreditCompanyRecordCountService creditCompanyRecordCountService;
|
||
|
||
@Operation(summary = "分页查询风险关系表")
|
||
@GetMapping("/page")
|
||
public ApiResult<PageResult<CreditRiskRelation>> page(CreditRiskRelationParam param) {
|
||
// 使用关联查询
|
||
return success(creditRiskRelationService.pageRel(param));
|
||
}
|
||
|
||
@Operation(summary = "查询全部风险关系表")
|
||
@GetMapping()
|
||
public ApiResult<List<CreditRiskRelation>> list(CreditRiskRelationParam param) {
|
||
// 使用关联查询
|
||
return success(creditRiskRelationService.listRel(param));
|
||
}
|
||
|
||
@Operation(summary = "根据id查询风险关系表")
|
||
@GetMapping("/{id}")
|
||
public ApiResult<CreditRiskRelation> get(@PathVariable("id") Integer id) {
|
||
// 使用关联查询
|
||
return success(creditRiskRelationService.getByIdRel(id));
|
||
}
|
||
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:save')")
|
||
@OperationLog
|
||
@Operation(summary = "添加风险关系表")
|
||
@PostMapping()
|
||
public ApiResult<?> save(@RequestBody CreditRiskRelation creditRiskRelation) {
|
||
// 记录当前登录用户id
|
||
// User loginUser = getLoginUser();
|
||
// if (loginUser != null) {
|
||
// creditRiskRelation.setUserId(loginUser.getUserId());
|
||
// }
|
||
if (creditRiskRelationService.save(creditRiskRelation)) {
|
||
return success("添加成功");
|
||
}
|
||
return fail("添加失败");
|
||
}
|
||
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:update')")
|
||
@OperationLog
|
||
@Operation(summary = "修改风险关系表")
|
||
@PutMapping()
|
||
public ApiResult<?> update(@RequestBody CreditRiskRelation creditRiskRelation) {
|
||
if (creditRiskRelationService.updateById(creditRiskRelation)) {
|
||
return success("修改成功");
|
||
}
|
||
return fail("修改失败");
|
||
}
|
||
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:remove')")
|
||
@OperationLog
|
||
@Operation(summary = "删除风险关系表")
|
||
@DeleteMapping("/{id}")
|
||
public ApiResult<?> remove(@PathVariable("id") Integer id) {
|
||
if (batchImportSupport.hardRemoveById(CreditRiskRelation.class, id)) {
|
||
return success("删除成功");
|
||
}
|
||
return fail("删除失败");
|
||
}
|
||
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:save')")
|
||
@OperationLog
|
||
@Operation(summary = "批量添加风险关系表")
|
||
@PostMapping("/batch")
|
||
public ApiResult<?> saveBatch(@RequestBody List<CreditRiskRelation> list) {
|
||
if (creditRiskRelationService.saveBatch(list)) {
|
||
return success("添加成功");
|
||
}
|
||
return fail("添加失败");
|
||
}
|
||
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:update')")
|
||
@OperationLog
|
||
@Operation(summary = "批量修改风险关系表")
|
||
@PutMapping("/batch")
|
||
public ApiResult<?> removeBatch(@RequestBody BatchParam<CreditRiskRelation> batchParam) {
|
||
if (batchParam.update(creditRiskRelationService, "id")) {
|
||
return success("修改成功");
|
||
}
|
||
return fail("修改失败");
|
||
}
|
||
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:remove')")
|
||
@OperationLog
|
||
@Operation(summary = "批量删除风险关系表")
|
||
@DeleteMapping("/batch")
|
||
public ApiResult<?> removeBatch(@RequestBody List<Integer> ids) {
|
||
if (batchImportSupport.hardRemoveByIds(CreditRiskRelation.class, ids)) {
|
||
return success("删除成功");
|
||
}
|
||
return fail("删除失败");
|
||
}
|
||
|
||
/**
|
||
* 根据企业名称匹配企业并更新 companyId(匹配 CreditCompany.name / CreditCompany.matchName)
|
||
*
|
||
* <p>默认仅更新 companyId=0 的记录;如需覆盖更新,传 onlyNull=false。</p>
|
||
*/
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:update')")
|
||
@OperationLog
|
||
@Operation(summary = "根据企业名称匹配并更新companyId")
|
||
@PostMapping("/company-id/refresh")
|
||
public ApiResult<Map<String, Object>> refreshCompanyIdByCompanyName(
|
||
@RequestParam(value = "onlyNull", required = false, defaultValue = "true") Boolean onlyNull,
|
||
@RequestParam(value = "limit", required = false) Integer limit
|
||
) {
|
||
User loginUser = getLoginUser();
|
||
Integer currentTenantId = loginUser != null ? loginUser.getTenantId() : null;
|
||
|
||
BatchImportSupport.CompanyIdRefreshStats stats = batchImportSupport.refreshCompanyIdByCompanyName(
|
||
creditRiskRelationService,
|
||
creditCompanyService,
|
||
currentTenantId,
|
||
onlyNull,
|
||
limit,
|
||
CreditRiskRelation::getId,
|
||
CreditRiskRelation::setId,
|
||
CreditRiskRelation::getMainBodyName,
|
||
CreditRiskRelation::getCompanyId,
|
||
CreditRiskRelation::setCompanyId,
|
||
CreditRiskRelation::setCompanyName,
|
||
CreditRiskRelation::getHasData,
|
||
CreditRiskRelation::setHasData,
|
||
CreditRiskRelation::getTenantId,
|
||
CreditRiskRelation::new
|
||
);
|
||
|
||
if (!stats.anyDataRead) {
|
||
return success("无可更新数据", stats.toMap());
|
||
}
|
||
return success("更新完成,更新" + stats.updated + "条", stats.toMap());
|
||
}
|
||
|
||
/**
|
||
* 批量导入风险关系表
|
||
*/
|
||
@PreAuthorize("hasAuthority('credit:creditRiskRelation:save')")
|
||
@Operation(summary = "批量导入风险关系表")
|
||
@PostMapping("/import")
|
||
public ApiResult<List<String>> importBatch(@RequestParam("file") MultipartFile file,
|
||
@RequestParam(value = "companyId", required = false) Integer companyId) {
|
||
List<String> errorMessages = new ArrayList<>();
|
||
int successCount = 0;
|
||
Set<Integer> touchedCompanyIds = new HashSet<>();
|
||
|
||
try {
|
||
int sheetIndex = ExcelImportSupport.findSheetIndex(file, "风险关系", 1);
|
||
ExcelImportSupport.ImportResult<CreditRiskRelationImportParam> importResult = ExcelImportSupport.read(
|
||
file, CreditRiskRelationImportParam.class, this::isEmptyImportRow, sheetIndex);
|
||
List<CreditRiskRelationImportParam> list = importResult.getData();
|
||
int usedTitleRows = importResult.getTitleRows();
|
||
int usedHeadRows = importResult.getHeadRows();
|
||
|
||
if (CollectionUtils.isEmpty(list)) {
|
||
return fail("未读取到数据,请确认模板表头与示例格式一致", null);
|
||
}
|
||
|
||
User loginUser = getLoginUser();
|
||
Integer currentUserId = loginUser != null ? loginUser.getUserId() : null;
|
||
Integer currentTenantId = loginUser != null ? loginUser.getTenantId() : null;
|
||
String fixedCompanyName = null;
|
||
if (companyId != null && companyId > 0) {
|
||
CreditCompany fixedCompany = creditCompanyService.getById(companyId);
|
||
fixedCompanyName = fixedCompany != null ? fixedCompany.getName() : null;
|
||
}
|
||
|
||
final int chunkSize = 500;
|
||
final int mpBatchSize = 500;
|
||
List<CreditRiskRelation> chunkItems = new ArrayList<>(chunkSize);
|
||
List<Integer> chunkRowNumbers = new ArrayList<>(chunkSize);
|
||
|
||
for (int i = 0; i < list.size(); i++) {
|
||
CreditRiskRelationImportParam param = list.get(i);
|
||
try {
|
||
CreditRiskRelation item = convertImportParamToEntity(param);
|
||
|
||
if (item.getCompanyId() == null && companyId != null) {
|
||
item.setCompanyId(companyId);
|
||
if (ImportHelper.isBlank(item.getCompanyName()) && !ImportHelper.isBlank(fixedCompanyName)) {
|
||
item.setCompanyName(fixedCompanyName);
|
||
}
|
||
}
|
||
if (item.getUserId() == null && currentUserId != null) {
|
||
item.setUserId(currentUserId);
|
||
}
|
||
if (item.getTenantId() == null && currentTenantId != null) {
|
||
item.setTenantId(currentTenantId);
|
||
}
|
||
if (item.getStatus() == null) {
|
||
item.setStatus(0);
|
||
}
|
||
if (item.getRecommend() == null) {
|
||
item.setRecommend(0);
|
||
}
|
||
if (item.getDeleted() == null) {
|
||
item.setDeleted(0);
|
||
}
|
||
|
||
int excelRowNumber = i + 1 + usedTitleRows + usedHeadRows;
|
||
if (ImportHelper.isBlank(item.getMainBodyName())) {
|
||
errorMessages.add("第" + excelRowNumber + "行:主体名称不能为空");
|
||
continue;
|
||
}
|
||
|
||
if (item.getCompanyId() != null && item.getCompanyId() > 0) {
|
||
touchedCompanyIds.add(item.getCompanyId());
|
||
}
|
||
|
||
chunkItems.add(item);
|
||
chunkRowNumbers.add(excelRowNumber);
|
||
if (chunkItems.size() >= chunkSize) {
|
||
successCount += batchImportSupport.persistInsertOnlyChunk(
|
||
creditRiskRelationService,
|
||
chunkItems,
|
||
chunkRowNumbers,
|
||
mpBatchSize,
|
||
CreditRiskRelation::getMainBodyName,
|
||
"",
|
||
errorMessages
|
||
);
|
||
chunkItems.clear();
|
||
chunkRowNumbers.clear();
|
||
}
|
||
} catch (Exception e) {
|
||
int excelRowNumber = i + 1 + usedTitleRows + usedHeadRows;
|
||
errorMessages.add("第" + excelRowNumber + "行:" + e.getMessage());
|
||
e.printStackTrace();
|
||
}
|
||
}
|
||
|
||
if (!chunkItems.isEmpty()) {
|
||
successCount += batchImportSupport.persistInsertOnlyChunk(
|
||
creditRiskRelationService,
|
||
chunkItems,
|
||
chunkRowNumbers,
|
||
mpBatchSize,
|
||
CreditRiskRelation::getMainBodyName,
|
||
"",
|
||
errorMessages
|
||
);
|
||
}
|
||
|
||
creditCompanyRecordCountService.refresh(CreditCompanyRecordCountService.CountType.RISK_RELATION, touchedCompanyIds);
|
||
|
||
if (errorMessages.isEmpty()) {
|
||
return success("成功导入" + successCount + "条数据", null);
|
||
} else {
|
||
return success("导入完成,成功" + successCount + "条,失败" + errorMessages.size() + "条", errorMessages);
|
||
}
|
||
} catch (Exception e) {
|
||
e.printStackTrace();
|
||
return fail("导入失败:" + e.getMessage(), null);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 下载风险关系导入模板
|
||
*/
|
||
@Operation(summary = "下载风险关系导入模板")
|
||
@GetMapping("/import/template")
|
||
public void downloadTemplate(HttpServletResponse response) throws IOException {
|
||
List<CreditRiskRelationImportParam> templateList = new ArrayList<>();
|
||
|
||
CreditRiskRelationImportParam example = new CreditRiskRelationImportParam();
|
||
example.setMainBodyName("示例企业");
|
||
example.setRegistrationStatus("存续");
|
||
example.setRegisteredCapital("8000");
|
||
example.setProvinceRegion("浙江");
|
||
example.setAssociatedRelation("关联企业");
|
||
example.setRiskRelation("存在风险关联");
|
||
example.setComments("备注信息");
|
||
templateList.add(example);
|
||
|
||
Workbook workbook = ExcelImportSupport.buildTemplate("风险关系导入模板", "风险关系", CreditRiskRelationImportParam.class, templateList);
|
||
|
||
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
|
||
response.setHeader("Content-Disposition", "attachment; filename=credit_risk_relation_import_template.xlsx");
|
||
|
||
workbook.write(response.getOutputStream());
|
||
workbook.close();
|
||
}
|
||
|
||
private boolean isEmptyImportRow(CreditRiskRelationImportParam param) {
|
||
if (param == null) {
|
||
return true;
|
||
}
|
||
return ImportHelper.isBlank(param.getMainBodyName())
|
||
&& ImportHelper.isBlank(param.getRegistrationStatus())
|
||
&& ImportHelper.isBlank(param.getRegisteredCapital());
|
||
}
|
||
|
||
private CreditRiskRelation convertImportParamToEntity(CreditRiskRelationImportParam param) {
|
||
CreditRiskRelation entity = new CreditRiskRelation();
|
||
|
||
entity.setMainBodyName(param.getMainBodyName());
|
||
entity.setRegistrationStatus(param.getRegistrationStatus());
|
||
entity.setRegisteredCapital(param.getRegisteredCapital());
|
||
entity.setProvinceRegion(param.getProvinceRegion());
|
||
entity.setAssociatedRelation(param.getAssociatedRelation());
|
||
entity.setRiskRelation(param.getRiskRelation());
|
||
entity.setComments(param.getComments());
|
||
|
||
return entity;
|
||
}
|
||
|
||
}
|