|
@@ -245,6 +245,7 @@ public class WisdomServiceImpl implements IWisdomService {
|
|
|
userVo.put("examineeName","ddsfs");
|
|
|
userVo.put("idCardImg1",vo.getIdCardImg1());
|
|
|
userVo.put("idCardImg2",vo.getIdCardImg2());
|
|
|
+ userVo.put("oneInchPhotos",vo.getOneInchPhotos());
|
|
|
userVo.put("phone_num",vo.getTelphone());
|
|
|
userVo.put("status",0);
|
|
|
userVo.put("reportTime",DateUtils.getTime());
|
|
@@ -302,8 +303,14 @@ public class WisdomServiceImpl implements IWisdomService {
|
|
|
String idCardImg2 = String.valueOf(userVo.get("idCardImg2"));
|
|
|
f2.setPath(idCardImg2);
|
|
|
f2.setFileName(userVo.get("examineeCode")+"_1.jpg");
|
|
|
+ FileBean f3 = new FileBean();
|
|
|
+ String oneInchPhotos = String.valueOf(userVo.get("oneInchPhotos"));
|
|
|
+ f3.setPath(oneInchPhotos);
|
|
|
+ f3.setFileName(userVo.get("oneInchPhotos")+".jpg");
|
|
|
fileBeanList.add(f1);
|
|
|
fileBeanList.add(f2);
|
|
|
+ fileBeanList.add(f3);
|
|
|
+
|
|
|
}
|
|
|
ossService.zipWisdomDownload(fileBeanList,outStream);
|
|
|
outStream.close();
|