|
@@ -25,8 +25,6 @@ import java.nio.file.Files;
|
|
|
import java.nio.file.Path;
|
|
|
import java.nio.file.Paths;
|
|
|
import java.nio.file.StandardCopyOption;
|
|
|
-import java.time.LocalDateTime;
|
|
|
-import java.time.format.DateTimeFormatter;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.LinkedHashMap;
|
|
|
import java.util.List;
|
|
@@ -150,12 +148,9 @@ public class CarNianJianFeiJob {
|
|
|
Map<String, AreaPo> areaMap = areaService.getAreaMap(cities, districts);
|
|
|
Map<String, List<AreaPo>> districtListMap = areaService.getDistrictListMap(cities, districts);
|
|
|
for (Map<String, String> map : list) {
|
|
|
- String startTime = map.get("start_time");
|
|
|
- LocalDateTime localDateTime = LocalDateTime.parse(startTime,
|
|
|
- DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
|
|
|
- String yearMonth = localDateTime.format(DateTimeFormatter.ofPattern("yyyyMM"));
|
|
|
- String year = String.valueOf(localDateTime.getYear());
|
|
|
- String month = String.valueOf(localDateTime.getMonthValue());
|
|
|
+ String yearMonth = map.get("data_time");
|
|
|
+ String year = yearMonth.substring(0, 4);
|
|
|
+ String month = yearMonth.substring(4, 6);
|
|
|
map.put("year_month", yearMonth);
|
|
|
map.put("year_no", year);
|
|
|
map.put("month_no", month);
|