Commit 45e553b9 by “zcwang”

modify: 导出字段优化

parent 67741dc8
Pipeline #44729 passed with stages
in 1 minute 50 seconds
...@@ -396,7 +396,8 @@ public class ChangeFlowExportCallback implements DesCallbackService { ...@@ -396,7 +396,8 @@ public class ChangeFlowExportCallback implements DesCallbackService {
} }
changeFlowExcelDTO.setChangeReason(record.getChangeReason()); changeFlowExcelDTO.setChangeReason(record.getChangeReason());
changeFlowExcelDTO.setChangeContent(record.getChangeContent()); changeFlowExcelDTO.setChangeContent(record.getChangeContent());
changeFlowExcelDTO.setChangeRiskDesc(record.getChangeRiskDesc()); changeFlowExcelDTO
.setChangeRiskDesc(StringUtils.isBlank(record.getChangeRiskDesc()) ? "/" : record.getChangeRiskDesc());
changeFlowExcelDTO.setChangeProfit(ProfitTypeEnum.getByType(record.getChangeProfit())); changeFlowExcelDTO.setChangeProfit(ProfitTypeEnum.getByType(record.getChangeProfit()));
changeFlowExcelDTO.setChangeProfitDesc(record.getChangeProfitDesc()); changeFlowExcelDTO.setChangeProfitDesc(record.getChangeProfitDesc());
return changeFlowExcelDTO; return changeFlowExcelDTO;
......
...@@ -62,7 +62,7 @@ public class ChangeFlowExcelVo { ...@@ -62,7 +62,7 @@ public class ChangeFlowExcelVo {
/** /**
* 变更负责部门名 * 变更负责部门名
*/ */
@ExcelTitleName(title = "变更负责部门", order = 7) @ExcelTitleName(title = "变更负责部门", order = 7)
private String changeDepartment; private String changeDepartment;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment