|
|
|
@@ -500,7 +500,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService { |
|
|
|
String tagNames = StringUtils.join(ids.stream().map(id->tagMap.get(id)).collect(Collectors.toList()),"/"); |
|
|
|
u.setTagNames(tagNames); |
|
|
|
}); |
|
|
|
excelService.exportExcel(list,null,"会员信息",WxCUserBasicInfoVo.class,"会员信息数据.xls",response); |
|
|
|
excelService.exportExcel(list,null,"会员信息",WxCUserBasicInfoVo.class,"会员信息数据.xlsx",response); |
|
|
|
} |
|
|
|
|
|
|
|
public void exportTemplate(HttpServletRequest request, HttpServletResponse response, String tenantId) { |
|
|
|
@@ -575,7 +575,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService { |
|
|
|
list.add(u2); |
|
|
|
list.add(u3); |
|
|
|
|
|
|
|
excelService.exportExcel(list,null,"会员信息模板",WxCUserBasicInfoVo.class,"会员信息模板.xls",response); |
|
|
|
excelService.exportExcel(list,null,"会员信息模板",WxCUserBasicInfoVo.class,"会员信息模板.xlsx",response); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@@ -826,7 +826,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService { |
|
|
|
public void exportCarPayData(WxCarPayRecord record, HttpServletRequest request, HttpServletResponse response) { |
|
|
|
List<WxCarPayRecord> list = wxCarPayRecordMapper.findCarPayList(record); |
|
|
|
String sheetName = (record.getIsPay()!=null && 1==record.getIsPay())?"线上缴费车辆列表":"进出车辆列表"; |
|
|
|
excelService.exportExcel(list,null,sheetName,WxCarPayRecord.class,sheetName+".xls",response); |
|
|
|
excelService.exportExcel(list,null,sheetName,WxCarPayRecord.class,sheetName+".xlsx",response); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
|