|
@@ -233,7 +233,7 @@ public class AdvisoryController {
|
|
|
if (createTime.length > 0) {
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
searchParams.put("startTime", simpleDateFormat.format(createTime[0]) + " 00:00:00");
|
|
|
- searchParams.put("endTime", simpleDateFormat.format(createTime[1]) + "23:59:59");
|
|
|
+ searchParams.put("endTime", simpleDateFormat.format(createTime[1]) + " 23:59:59");
|
|
|
}
|
|
|
if (StringUtils.isNotEmpty(insuredArea)) {
|
|
|
searchParams.put("insuredArea", insuredArea);
|
|
@@ -277,7 +277,7 @@ public class AdvisoryController {
|
|
|
if (createTime.length > 0) {
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
searchParams.put("startTime", simpleDateFormat.format(createTime[0]) + " 00:00:00");
|
|
|
- searchParams.put("endTime", simpleDateFormat.format(createTime[1]) + "23:59:59");
|
|
|
+ searchParams.put("endTime", simpleDateFormat.format(createTime[1]) + " 23:59:59");
|
|
|
}
|
|
|
if (StringUtils.isNotEmpty(insuredArea)) {
|
|
|
String[] arrayInsuredArea = insuredArea.split(",");
|
|
@@ -359,7 +359,7 @@ public class AdvisoryController {
|
|
|
if (createTime.length > 0) {
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
searchParams.put("startTime", simpleDateFormat.format(createTime[0]) + " 00:00:00");
|
|
|
- searchParams.put("endTime", simpleDateFormat.format(createTime[1]) + "23:59:59");
|
|
|
+ searchParams.put("endTime", simpleDateFormat.format(createTime[1]) + " 23:59:59");
|
|
|
}
|
|
|
if (StringUtils.isNotEmpty(insuredArea)) {
|
|
|
String[] arrayInsuredArea = insuredArea.split(",");
|