Commit 172c6b69 authored by wangxl's avatar wangxl

1

parent e5770358
......@@ -137,10 +137,10 @@ public class ComProjectAuditController extends BaseController<ComProjectAuditSer
Pagination<ComProjectAuditDTO> page = comProjectAuditService.getAuditListByPage(vo);
if (null != page && null != page.getDataList() && page.getDataList().size() != 0) {
page.getDataList().forEach((e) -> {
if (null != e.getMobile())
if (vo.getPageIndex() != -1) {
e.setMobile(hideAllPhoneNum(e.getMobile()));
if (Objects.nonNull(e.getCertId()))
e.setCertId(hideAllIdCardNum(e.getCertId()));
}
if (null != e.getAuditResult())
e.setAuditResultName(CommonEnum.auditResult.getEnum(e.getAuditResult()).getDescription());
e.setTalentCategoryName(systemParameterService.getParaName(e.getTalentCategory()));
......
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