Commit ed1f758e authored by huyuchen's avatar huyuchen

huych-权限修改

parent 499f5987
......@@ -396,6 +396,11 @@ public class SysHouseHoldInfoServiceImpl extends ServiceImpl<SysHouseHoldInfoMap
@Override
public void listExport(HttpServletResponse response, SysHouseHoldInfo sysHouseHoldInfo){
String fileName = "户配置信息批量导出" + DateUtil.getThisTime() + CommonConstants.XLSX;
//账户性质是公积金导出空
if (Common.isNotNull(sysHouseHoldInfo.getType())
&& CommonConstants.ONE_STRING.equals(sysHouseHoldInfo.getType())) {
sysHouseHoldInfo.setType(CommonConstants.THREE_STRING);
}
//获取要导出的列表
List<TSocialHouseholdExportVo> list = new ArrayList<>();
long count = baseMapper.selectExportCount(sysHouseHoldInfo);
......
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