Commit 37d5d307 authored by 罗林杰's avatar 罗林杰

修改报名信息导出

parent 5910adcb
......@@ -127,10 +127,10 @@ public class CmsApplicationServiceImpl extends ServiceImpl<CmsApplicationReposit
public List<CmsApplication> export(CmsApplication cmsApplication) {
List<CmsApplication> cmsApplicationList = baseMapper.queryExport(cmsApplication);
//循环解密手机号
for (CmsApplication cmsApplication1 : cmsApplicationList) {
String phone = cmsApplication1.getPhone();
for (CmsApplication x : cmsApplicationList) {
String phone = x.getPhone();
if (StringUtils.isNotBlank(phone)) {
cmsApplication1.setPhone(CyAESUtils.decrypt(phone));
x.setPhone(CyAESUtils.decrypt(phone));
}
}
return cmsApplicationList;
......
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