|
@@ -77,6 +77,8 @@ public class SwdlServiceImpl extends GenericProvider implements SwdlService {
|
|
|
if(BeanUtils.isEmpty(map.get("locationId"))){
|
|
if(BeanUtils.isEmpty(map.get("locationId"))){
|
|
|
map.put("locationId",getDiDian());
|
|
map.put("locationId",getDiDian());
|
|
|
}
|
|
}
|
|
|
|
|
+ map.put("shiFouQiYong","%"+map.get("shiFouQiYong")+"%");
|
|
|
|
|
+ map.put("daiLiRenXingM","%"+map.get("daiLiRenXingM")+"%");
|
|
|
List<Map<String,Object>> list = updateDataTableDao.selectByLocation(map);
|
|
List<Map<String,Object>> list = updateDataTableDao.selectByLocation(map);
|
|
|
int totalCount = updateDataTableDao.selectByLocationCount(map);
|
|
int totalCount = updateDataTableDao.selectByLocationCount(map);
|
|
|
APIPageList<Map<String,Object>> pageList = getAPIPageList(list);
|
|
APIPageList<Map<String,Object>> pageList = getAPIPageList(list);
|
|
@@ -105,9 +107,7 @@ public class SwdlServiceImpl extends GenericProvider implements SwdlService {
|
|
|
if (BeanUtils.isEmpty(map.get("locationId"))) {
|
|
if (BeanUtils.isEmpty(map.get("locationId"))) {
|
|
|
map.put("locationId", getDiDian());
|
|
map.put("locationId", getDiDian());
|
|
|
}
|
|
}
|
|
|
- if (BeanUtils.isEmpty(map.get("examinee"))) {
|
|
|
|
|
- map.put("examinee", EXAMINEE);
|
|
|
|
|
- }
|
|
|
|
|
|
|
+
|
|
|
Map mapDeal = getMapV2(map);
|
|
Map mapDeal = getMapV2(map);
|
|
|
List<Map<String, Object>> list = updateDataTableDao.selectMobileExInfo(mapDeal);
|
|
List<Map<String, Object>> list = updateDataTableDao.selectMobileExInfo(mapDeal);
|
|
|
int totalCount = updateDataTableDao.selectMobileExInfoCount(mapDeal);
|
|
int totalCount = updateDataTableDao.selectMobileExInfoCount(mapDeal);
|
|
@@ -244,15 +244,24 @@ public class SwdlServiceImpl extends GenericProvider implements SwdlService {
|
|
|
stringObjectHashMap.put("startPage", map.get("startPage"));
|
|
stringObjectHashMap.put("startPage", map.get("startPage"));
|
|
|
stringObjectHashMap.put("locationId", getDiDian());
|
|
stringObjectHashMap.put("locationId", getDiDian());
|
|
|
Map param = (Map) map.get("param");
|
|
Map param = (Map) map.get("param");
|
|
|
-
|
|
|
|
|
- stringObjectHashMap.put("examName",param.get("examName"));
|
|
|
|
|
- stringObjectHashMap.put("bankName",param.get("bankName"));
|
|
|
|
|
-
|
|
|
|
|
|
|
+ if(BeanUtils.isNotEmpty(param.get("examName"))){
|
|
|
|
|
+ stringObjectHashMap.put("examName","%"+param.get("examName")+"%");
|
|
|
|
|
+ }
|
|
|
|
|
+ if(BeanUtils.isNotEmpty(param.get("bankName"))){
|
|
|
|
|
+ stringObjectHashMap.put("bankName","%"+param.get("bankName")+"%");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (BeanUtils.isEmpty(param.get("examinee"))) {
|
|
|
|
|
+ stringObjectHashMap.put("examinee", EXAMINEE);
|
|
|
|
|
+ }else{
|
|
|
|
|
+ stringObjectHashMap.put("examinee",param.get("examinee"));
|
|
|
|
|
+ }
|
|
|
stringObjectHashMap.put("startDateUp",param.get("startDate^S"));
|
|
stringObjectHashMap.put("startDateUp",param.get("startDate^S"));
|
|
|
stringObjectHashMap.put("startDateLower",param.get("startDate^E"));
|
|
stringObjectHashMap.put("startDateLower",param.get("startDate^E"));
|
|
|
stringObjectHashMap.put("limitDateUp",param.get("limitDate^S"));
|
|
stringObjectHashMap.put("limitDateUp",param.get("limitDate^S"));
|
|
|
stringObjectHashMap.put("limitDateLower",param.get("limitDate^E"));
|
|
stringObjectHashMap.put("limitDateLower",param.get("limitDate^E"));
|
|
|
- stringObjectHashMap.put("examType",String.join(",", (ArrayList)param.get("examType")));
|
|
|
|
|
|
|
+ if(BeanUtils.isNotEmpty(param.get("examType"))){
|
|
|
|
|
+ stringObjectHashMap.put("examType",String.join(",", (ArrayList)param.get("examType")));
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
return stringObjectHashMap;
|
|
return stringObjectHashMap;
|
|
|
}
|
|
}
|