Browse Source

[A端][修复]:导出会员地址可读字串化

release_toaliyun_real
hupeng 7 years ago
parent
commit
bcbbd650d8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCUserBasicInfoServiceImpl.java

+ 1
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCUserBasicInfoServiceImpl.java View File

@@ -215,7 +215,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService {
educationCellTwo.setCellValue(entity.getEducation()); educationCellTwo.setCellValue(entity.getEducation());
if (entity.getBirthdate() != null) if (entity.getBirthdate() != null)
birthdateCellTwo.setCellValue(sdf.format(entity.getBirthdate())); birthdateCellTwo.setCellValue(sdf.format(entity.getBirthdate()));
addrCellTwo.setCellValue(entity.getAddress());
addrCellTwo.setCellValue(entity.getAddressStr());
updateDateCellTwo.setCellValue(sdf.format(entity.getUpdateDate())); updateDateCellTwo.setCellValue(sdf.format(entity.getUpdateDate()));
createDateCellTwo.setCellValue(sdf.format(entity.getCreateDate())); createDateCellTwo.setCellValue(sdf.format(entity.getCreateDate()));
if (entity != null) { if (entity != null) {


Loading…
Cancel
Save