diff --git a/zc-business/src/main/java/com/zc/business/controller/DCPerceivedEventsWarningController.java b/zc-business/src/main/java/com/zc/business/controller/DCPerceivedEventsWarningController.java index cd7e6274..b888e8a6 100644 --- a/zc-business/src/main/java/com/zc/business/controller/DCPerceivedEventsWarningController.java +++ b/zc-business/src/main/java/com/zc/business/controller/DCPerceivedEventsWarningController.java @@ -362,8 +362,7 @@ public class DCPerceivedEventsWarningController extends BaseController { List> lastYearMap = (List>) map.get("lastYearMap"); for (int i = UniversalEnum.ZERO.getNumber(); i < currentlyMap.size(); i++) { ManyTimesInterval manyTimesInterval = new ManyTimesInterval(); - int time = Integer.parseInt(currentlyMap.get(i).get("time").toString()); - manyTimesInterval.setTime(time + "点至" + (time +UniversalEnum.ONE.getNumber()) + "点"); + manyTimesInterval.setTime(i + "点至" + (i +UniversalEnum.ONE.getNumber()) + "点"); manyTimesInterval.setCurrentData(currentlyMap.get(i).get("number").toString()); manyTimesInterval.setContemporaneousData(lastYearMap.get(i).get("number").toString()); list.add(manyTimesInterval); @@ -440,7 +439,8 @@ public class DCPerceivedEventsWarningController extends BaseController { Set allKeys = new HashSet<>(currentlyMap.keySet()); allKeys.addAll(lastYearMap.keySet()); - for (String key : allKeys) { + List stakeMarkList = allKeys.stream().sorted(Comparator.comparing(item -> item)).collect(Collectors.toList()); + for (String key : stakeMarkList) { SelectSection selectSection = new SelectSection(); selectSection.setStakeMark(key); if (currentlyMap.containsKey(key)){ @@ -479,19 +479,20 @@ public class DCPerceivedEventsWarningController extends BaseController { List> lastYearMap = (List>) map.get("lastYearMap"); List> stateDuration = (List>) map.get("stateDuration"); - Map>> currentlyData = currentlyMap.stream().collect(Collectors.groupingBy(item -> item.get("sectionName").toString())); - Map>> lastYearData = lastYearMap.stream().collect(Collectors.groupingBy(item -> item.get("sectionName").toString())); - Map>> stateDurationData = stateDuration.stream().collect(Collectors.groupingBy(item -> item.get("sectionName").toString())); + Map>> currentlyData = currentlyMap.stream().collect(Collectors.groupingBy(item -> item.get("startStakeMark").toString())); + Map>> lastYearData = lastYearMap.stream().collect(Collectors.groupingBy(item -> item.get("startStakeMark").toString())); + Map>> stateDurationData = stateDuration.stream().collect(Collectors.groupingBy(item -> item.get("startStakeMark").toString())); Set allKeys = new HashSet<>(currentlyData.keySet()); allKeys.addAll(lastYearData.keySet()); allKeys.addAll(stateDurationData.keySet()); - for (String key : allKeys) { + + List stakeMarkList = allKeys.stream().sorted(Comparator.comparing(stakeMark -> stakeMark)).collect(Collectors.toList()); + for (String key : stakeMarkList) { SelectStateType selectStateType = new SelectStateType(); - selectStateType.setSectionName(key); - selectStateType.setSectionName(key); if (currentlyData.containsKey(key)){ List> sectionData = currentlyData.get(key); + selectStateType.setSectionName(sectionData.get(0).get("sectionName").toString()); for (int i = UniversalEnum.ZERO.getNumber(); i < sectionData.size(); i++) { if (UniversalEnum.ONE.getValue().equals(sectionData.get(i).get("warningState").toString())){ selectStateType.setReporting(sectionData.get(i).get("num").toString()); @@ -506,6 +507,7 @@ public class DCPerceivedEventsWarningController extends BaseController { } if (lastYearData.containsKey(key)){ List> sectionData = lastYearData.get(key); + selectStateType.setSectionName(sectionData.get(0).get("sectionName").toString()); Integer total = UniversalEnum.ZERO.getNumber(); for (Map sectionDatum : sectionData) { total += Integer.parseInt(sectionDatum.get("num").toString()); @@ -514,6 +516,7 @@ public class DCPerceivedEventsWarningController extends BaseController { } if (stateDurationData.containsKey(key)){ List> sectionData = stateDurationData.get(key); + selectStateType.setSectionName(sectionData.get(0).get("sectionName").toString()); selectStateType.setAverageDuration(sectionData.get(UniversalEnum.ZERO.getNumber()).get("avg").toString()); } diff --git a/zc-business/src/main/java/com/zc/business/controller/DcPublishManageController.java b/zc-business/src/main/java/com/zc/business/controller/DcPublishManageController.java index eab0b511..66513f3a 100644 --- a/zc-business/src/main/java/com/zc/business/controller/DcPublishManageController.java +++ b/zc-business/src/main/java/com/zc/business/controller/DcPublishManageController.java @@ -24,6 +24,9 @@ import javax.servlet.http.HttpServletResponse; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.nio.charset.StandardCharsets; +import java.time.LocalDate; +import java.time.ZoneId; +import java.time.format.DateTimeFormatter; import java.util.*; import java.util.stream.Collectors; @@ -230,24 +233,43 @@ public class DcPublishManageController extends BaseController @GetMapping("/exportMonthTrendsPublishManage") public void exportMonthTrendsPublishManage(HttpServletResponse response,DcPublishManage dcPublishManage){ + List dates = new ArrayList<>(); + LocalDate currentDate = LocalDate.now(); + LocalDate publishLocalDate = dcPublishManage.getPublishTime().toInstant().atZone(ZoneId.systemDefault()).toLocalDate(); + + if (currentDate.getMonth() == publishLocalDate.getMonth() && currentDate.getYear() == publishLocalDate.getYear()) { + for (int i = 1; i <= currentDate.getDayOfMonth(); i++) { + dates.add(String.format("%d-%02d-%02d", currentDate.getYear(), currentDate.getMonthValue(), i)); + } + } else { + int daysInMonth = publishLocalDate.lengthOfMonth(); + for (int i = 1; i <= daysInMonth; i++) { + dates.add(String.format("%d-%02d-%02d", publishLocalDate.getYear(), publishLocalDate.getMonthValue(), i)); + } + } + List> data = dcPublishManageService.monthTrendsPublishManage(dcPublishManage); List list = new ArrayList<>(); if (data != null && data.size() > 0) { Map>> group = data.stream().collect(Collectors.groupingBy(item -> item.get("publishTime").toString())); - for (String publishTime : group.keySet()) { + for (String publishTime : dates) { TrendsPublishManage trendsPublishManage = new TrendsPublishManage(); trendsPublishManage.setPublishTime(publishTime); - List> groupData = group.get(publishTime); - for (HashMap groupDatum : groupData) { - if ("4".equals(groupDatum.get("publishChannels").toString())){ - trendsPublishManage.setBoard(groupDatum.get("number").toString()); - } else if ("7".equals(groupDatum.get("publishChannels").toString())){ - trendsPublishManage.setBroadcast(groupDatum.get("number").toString()); - } else if ("8".equals(groupDatum.get("publishChannels").toString())){ - trendsPublishManage.setWeChat(groupDatum.get("number").toString()); + trendsPublishManage.setBoard("0"); + trendsPublishManage.setBroadcast("0"); + trendsPublishManage.setWeChat("0"); + if (group.containsKey(publishTime)) { + List> groupData = group.get(publishTime); + for (HashMap groupDatum : groupData) { + if ("4".equals(groupDatum.get("publishChannels").toString())) { + trendsPublishManage.setBoard(groupDatum.get("number").toString()); + } else if ("7".equals(groupDatum.get("publishChannels").toString())) { + trendsPublishManage.setBroadcast(groupDatum.get("number").toString()); + } else if ("8".equals(groupDatum.get("publishChannels").toString())) { + trendsPublishManage.setWeChat(groupDatum.get("number").toString()); + } } } - list.add(trendsPublishManage); } diff --git a/zc-business/src/main/java/com/zc/business/controller/DcTrafficStatisticsController.java b/zc-business/src/main/java/com/zc/business/controller/DcTrafficStatisticsController.java index f7fd5497..0a6daecd 100644 --- a/zc-business/src/main/java/com/zc/business/controller/DcTrafficStatisticsController.java +++ b/zc-business/src/main/java/com/zc/business/controller/DcTrafficStatisticsController.java @@ -13,6 +13,7 @@ import com.ruoyi.common.utils.StringUtils; import com.ruoyi.common.utils.poi.ExcelUtil; import com.zc.business.domain.*; import com.zc.business.domain.export.*; +import com.zc.business.enums.LocationEnum; import com.zc.business.enums.StakeMarkRange; import com.zc.business.enums.UniversalEnum; import com.zc.business.request.DcTrafficMetricsDataRequest; @@ -926,18 +927,18 @@ public AjaxResult trafficFlowAtTollStationEntranceHour(String startDate, String cell.setCellValue(UniversalEnum.EMPTY_STRING.getValue()); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.ONE.getNumber()); - cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue()); + cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue() + "(辆)"); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.TWO.getNumber()); - cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue()); + cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue() + "(辆)"); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.THREE.getNumber()); - cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue()); + cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue() + "(辆)"); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.FOUR.getNumber()); - cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue()); + cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue() + "(辆)"); cell.setCellStyle(headerStyle); //合并单元格,参数依次为起始行,结束行,起始列,结束列 (从0开始) @@ -949,7 +950,8 @@ public AjaxResult trafficFlowAtTollStationEntranceHour(String startDate, String sheet.addMergedRegion(new CellRangeAddress(UniversalEnum.ZERO.getNumber(), UniversalEnum.ZERO.getNumber(), UniversalEnum.THREE.getNumber(), UniversalEnum.FOUR.getNumber())); int i = 2; - for (String station : stationList) { + for (LocationEnum stationEnum : LocationEnum.values()) { + String station = stationEnum.getName(); Row subHeaderRow = sheet.createRow(i); cell = subHeaderRow.createCell(UniversalEnum.ZERO.getNumber()); cell.setCellValue(station); @@ -959,24 +961,40 @@ public AjaxResult trafficFlowAtTollStationEntranceHour(String startDate, String cell = subHeaderRow.createCell(UniversalEnum.ONE.getNumber()); cell.setCellValue(thisYearEntranceData.get(station).get(0).get("value")); cell.setCellStyle(dataStyle); + } else { + cell = subHeaderRow.createCell(UniversalEnum.ONE.getNumber()); + cell.setCellValue(""); + cell.setCellStyle(dataStyle); } if (lastYearEntranceData.containsKey(station)){ cell = subHeaderRow.createCell(UniversalEnum.TWO.getNumber()); cell.setCellValue(lastYearEntranceData.get(station).get(0).get("value")); cell.setCellStyle(dataStyle); + } else { + cell = subHeaderRow.createCell(UniversalEnum.TWO.getNumber()); + cell.setCellValue(""); + cell.setCellStyle(dataStyle); } if (thisYearExportData.containsKey(station)){ cell = subHeaderRow.createCell(UniversalEnum.THREE.getNumber()); cell.setCellValue(thisYearExportData.get(station).get(0).get("value")); cell.setCellStyle(dataStyle); + } else { + cell = subHeaderRow.createCell(UniversalEnum.THREE.getNumber()); + cell.setCellValue(""); + cell.setCellStyle(dataStyle); } if (lastYearExportData.containsKey(station)){ - cell = subHeaderRow.createCell(UniversalEnum.THREE.getNumber()); + cell = subHeaderRow.createCell(UniversalEnum.FOUR.getNumber()); cell.setCellValue(lastYearExportData.get(station).get(0).get("value")); cell.setCellStyle(dataStyle); + } else { + cell = subHeaderRow.createCell(UniversalEnum.FOUR.getNumber()); + cell.setCellValue(""); + cell.setCellStyle(dataStyle); } i++; } @@ -1111,18 +1129,18 @@ public AjaxResult trafficFlowAtTollStationEntrance(String startDate, String endD cell.setCellValue(UniversalEnum.EMPTY_STRING.getValue()); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.ONE.getNumber()); - cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue()); + cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue() + "(辆)"); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.TWO.getNumber()); - cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue()); + cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue() + "(辆)"); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.THREE.getNumber()); - cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue()); + cell.setCellValue(UniversalEnum.CURRENT_TRAFFIC_FLOW.getValue() + "(辆)"); cell.setCellStyle(headerStyle); cell = subHeaderRow1.createCell(UniversalEnum.FOUR.getNumber()); - cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue()); + cell.setCellValue(UniversalEnum.THE_SAME_PERIOD_LAST_YEAR.getValue() + "(辆)"); cell.setCellStyle(headerStyle); //合并单元格,参数依次为起始行,结束行,起始列,结束列 (从0开始) diff --git a/zc-business/src/main/java/com/zc/business/domain/export/AccidentVehicleAnalysis.java b/zc-business/src/main/java/com/zc/business/domain/export/AccidentVehicleAnalysis.java index 9fca0011..8f43c7f1 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/AccidentVehicleAnalysis.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/AccidentVehicleAnalysis.java @@ -21,10 +21,10 @@ public class AccidentVehicleAnalysis extends BaseEntity private String typeName; /** 事件数量 */ - @Excel(name = "事件数量") + @Excel(name = "事件数量(起)") private String num; /** 平均处置时长 */ - @Excel(name = "平均处置时长") + @Excel(name = "平均处置时长(分钟)") private String avgTime; public String getTypeName() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/AllEventNum.java b/zc-business/src/main/java/com/zc/business/domain/export/AllEventNum.java index 6aa9daf7..8d88ffe5 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/AllEventNum.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/AllEventNum.java @@ -20,7 +20,7 @@ public class AllEventNum extends BaseEntity private String eventName; /** 数量 */ - @Excel(name = "数量") + @Excel(name = "数量(起)") private String num; /** 占比 */ @Excel(name = "占比") diff --git a/zc-business/src/main/java/com/zc/business/domain/export/EventTrend.java b/zc-business/src/main/java/com/zc/business/domain/export/EventTrend.java index f4758dc7..96a4dc66 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/EventTrend.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/EventTrend.java @@ -21,10 +21,10 @@ public class EventTrend extends BaseEntity private String hours; /** 感知事件 */ - @Excel(name = "感知事件") + @Excel(name = "感知事件(起)") private String perception; /** 交通事件 */ - @Excel(name = "交通事件") + @Excel(name = "交通事件(起)") private String traffic; public String getHours() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/EventTypeAnalysis.java b/zc-business/src/main/java/com/zc/business/domain/export/EventTypeAnalysis.java index b1ad51a0..8af0d22f 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/EventTypeAnalysis.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/EventTypeAnalysis.java @@ -21,16 +21,16 @@ public class EventTypeAnalysis extends BaseEntity private String eventSubclassName; /** 事件数量 */ - @Excel(name = "事件数量") + @Excel(name = "事件数量(起)") private String num; /** 去年同期总量 */ - @Excel(name = "去年同期总量") + @Excel(name = "去年同期总量(起)") private String lastNum; /** 平均处置时长 */ - @Excel(name = "平均处置时长") + @Excel(name = "平均处置时长(分钟)") private String avgTime; /** 去年同期平均处置时长 */ - @Excel(name = "去年同期平均处置时长") + @Excel(name = "去年同期平均处置时长(分钟)") private String lastAvgTime; diff --git a/zc-business/src/main/java/com/zc/business/domain/export/EventTypePublishManageMonth.java b/zc-business/src/main/java/com/zc/business/domain/export/EventTypePublishManageMonth.java index 0456bf53..b12b07c5 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/EventTypePublishManageMonth.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/EventTypePublishManageMonth.java @@ -20,13 +20,13 @@ public class EventTypePublishManageMonth extends BaseEntity private String typeName; /** 情报板 */ - @Excel(name = "情报板") + @Excel(name = "情报板(次)") private String board; /** 语音广播 */ - @Excel(name = "语音广播") + @Excel(name = "语音广播(次)") private String broadcast; /** 企业微信 */ - @Excel(name = "企业微信") + @Excel(name = "企业微信(次)") private String weChat; public String getTypeName() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/ManyTimesInterval.java b/zc-business/src/main/java/com/zc/business/domain/export/ManyTimesInterval.java index 6eff5897..b996b0da 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/ManyTimesInterval.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/ManyTimesInterval.java @@ -24,10 +24,10 @@ public class ManyTimesInterval extends BaseEntity private String time; /** 本期事件 */ - @Excel(name = "本期事件") + @Excel(name = "本期事件(起)") private String currentData; /** 去年同期 */ - @Excel(name = "去年同期") + @Excel(name = "去年同期(起)") private String contemporaneousData; public String getTime() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningFacility.java b/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningFacility.java index 805ef006..8c25f1eb 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningFacility.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningFacility.java @@ -20,7 +20,7 @@ public class NonAutomaticWarningFacility extends BaseEntity private String facilityName; /** 数量 */ - @Excel(name = "数量") + @Excel(name = "数量(起)") private String number; /** 占比 */ @Excel(name = "占比") diff --git a/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningTimeType.java b/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningTimeType.java index 7af7bfa6..58b48b6e 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningTimeType.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningTimeType.java @@ -20,7 +20,7 @@ public class NonAutomaticWarningTimeType extends BaseEntity private String time; /** 数量 */ - @Excel(name = "数量") + @Excel(name = "数量(起)") private String number; public String getTime() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningType.java b/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningType.java index 8a421d2b..6e8443d0 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningType.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/NonAutomaticWarningType.java @@ -20,7 +20,7 @@ public class NonAutomaticWarningType extends BaseEntity private String subclass; /** 数量 */ - @Excel(name = "数量") + @Excel(name = "数量(起)") private String number; /** 占比 */ @Excel(name = "占比") diff --git a/zc-business/src/main/java/com/zc/business/domain/export/RealTimeTrafficFlow.java b/zc-business/src/main/java/com/zc/business/domain/export/RealTimeTrafficFlow.java index d4b465d2..2229153d 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/RealTimeTrafficFlow.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/RealTimeTrafficFlow.java @@ -21,16 +21,16 @@ public class RealTimeTrafficFlow extends BaseEntity private String name; /** 客车 */ - @Excel(name = "客车") + @Excel(name = "客车(辆)") private String totalPassengerFlow; /** 货车 */ - @Excel(name = "货车") + @Excel(name = "货车(辆)") private String typeTruckFlow; /** 专项车 */ - @Excel(name = "专项车") + @Excel(name = "专项车(辆)") private String typeSpecialVehicleFlow; /** 去年同期 */ - @Excel(name = "去年同期") + @Excel(name = "去年同期(辆)") private String lastYearTotal; public String getName() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/RoadSectionAnalysis.java b/zc-business/src/main/java/com/zc/business/domain/export/RoadSectionAnalysis.java index 8f28ec0c..2835ed39 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/RoadSectionAnalysis.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/RoadSectionAnalysis.java @@ -21,16 +21,16 @@ public class RoadSectionAnalysis extends BaseEntity private String section_name; /** 事故总量 */ - @Excel(name = "事故总量") + @Excel(name = "事故总量(起)") private String num; /** 百公里事故总量 */ - @Excel(name = "百公里事故总量") + @Excel(name = "百公里事故总量(起)") private String avgNum; /** 去年事故总量 */ - @Excel(name = "去年事故总量") + @Excel(name = "去年事故总量(起)") private String lastNum; /** 路段里程数 */ - @Excel(name = "路段里程数") + @Excel(name = "路段里程数(公里)") private String mileage; public String getSection_name() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/SectionPerceivedList.java b/zc-business/src/main/java/com/zc/business/domain/export/SectionPerceivedList.java index 2e5fb669..60ee6550 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/SectionPerceivedList.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/SectionPerceivedList.java @@ -24,7 +24,7 @@ public class SectionPerceivedList extends BaseEntity @Excel(name = "路段名称") private String sectionName; /** 事件数量 */ - @Excel(name = "事件数量") + @Excel(name = "事件数量(起)") private String number; public Integer getRank() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/SectionTrafficRanking.java b/zc-business/src/main/java/com/zc/business/domain/export/SectionTrafficRanking.java index d2135931..6844ea1f 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/SectionTrafficRanking.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/SectionTrafficRanking.java @@ -24,7 +24,7 @@ public class SectionTrafficRanking extends BaseEntity @Excel(name = "路段名称") private String facilityName; /** 车流量 */ - @Excel(name = "车流量") + @Excel(name = "车流量(辆)") private String number; public Integer getRank() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/SelectSection.java b/zc-business/src/main/java/com/zc/business/domain/export/SelectSection.java index 4e17c9a2..9a8f606d 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/SelectSection.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/SelectSection.java @@ -21,10 +21,10 @@ public class SelectSection extends BaseEntity private String stakeMark; /** 本期事件 */ - @Excel(name = "本期事件") + @Excel(name = "本期事件(起)") private String currentData; /** 去年同期 */ - @Excel(name = "去年同期") + @Excel(name = "去年同期(起)") private String contemporaneousData; public String getStakeMark() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/SelectStateType.java b/zc-business/src/main/java/com/zc/business/domain/export/SelectStateType.java index 1f3c22ca..000a857d 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/SelectStateType.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/SelectStateType.java @@ -21,27 +21,27 @@ public class SelectStateType extends BaseEntity private String sectionName; /** 上报 */ - @Excel(name = "上报") + @Excel(name = "上报(起)") private String reporting; /** 已完成 */ - @Excel(name = "已完成") + @Excel(name = "已完成(起)") private String completed; /** 已终止 */ - @Excel(name = "已终止") + @Excel(name = "已终止(起)") private String terminated; /** 自动结束 */ - @Excel(name = "自动结束") + @Excel(name = "自动结束(起)") private String automaticTermination; /** 去年同期 */ - @Excel(name = "去年同期") + @Excel(name = "去年同期(起)") private String contemporaneousData; /** 平均时长 */ - @Excel(name = "平均时长") + @Excel(name = "平均时长(分钟)") private String averageDuration; public String getSectionName() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/SelectTollStationAnalysis.java b/zc-business/src/main/java/com/zc/business/domain/export/SelectTollStationAnalysis.java index 2d78cea1..b27afe6f 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/SelectTollStationAnalysis.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/SelectTollStationAnalysis.java @@ -21,13 +21,13 @@ public class SelectTollStationAnalysis extends BaseEntity private String facilityName; /** 封闭 */ - @Excel(name = "封闭") + @Excel(name = "封闭(起)") private String facilityClose; /** 限行 */ - @Excel(name = "限行") + @Excel(name = "限行(起)") private String facilityRestriction; /** 合计 */ - @Excel(name = "合计") + @Excel(name = "合计(起)") private String sum; public String getFacilityName() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/SelectWarningType.java b/zc-business/src/main/java/com/zc/business/domain/export/SelectWarningType.java index 9d49eeab..1a317414 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/SelectWarningType.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/SelectWarningType.java @@ -21,7 +21,7 @@ public class SelectWarningType extends BaseEntity private String warningType; /** 数量 */ - @Excel(name = "数量") + @Excel(name = "数量(起)") private String number; /** 占比 */ diff --git a/zc-business/src/main/java/com/zc/business/domain/export/StatisticsPublishManage.java b/zc-business/src/main/java/com/zc/business/domain/export/StatisticsPublishManage.java index 561ce53c..ff5accf2 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/StatisticsPublishManage.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/StatisticsPublishManage.java @@ -20,7 +20,7 @@ public class StatisticsPublishManage extends BaseEntity private String channelName; /** 数量 */ - @Excel(name = "数量") + @Excel(name = "数量(起)") private String num; /** 占比 */ @Excel(name = "占比") diff --git a/zc-business/src/main/java/com/zc/business/domain/export/TollStationAnalysis.java b/zc-business/src/main/java/com/zc/business/domain/export/TollStationAnalysis.java index 29e388da..30d6fef6 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/TollStationAnalysis.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/TollStationAnalysis.java @@ -20,10 +20,10 @@ public class TollStationAnalysis extends BaseEntity private String facilityName; /** 封闭 */ - @Excel(name = "封闭") + @Excel(name = "封闭(起)") private String trafficClose; /** 限行 */ - @Excel(name = "限行") + @Excel(name = "限行(起)") private String trafficRestriction; public String getFacilityName() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/TrafficPeriodAnalysis.java b/zc-business/src/main/java/com/zc/business/domain/export/TrafficPeriodAnalysis.java index a19fac82..ff672ca7 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/TrafficPeriodAnalysis.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/TrafficPeriodAnalysis.java @@ -21,10 +21,10 @@ public class TrafficPeriodAnalysis extends BaseEntity private String time; /** 本期车流量 */ - @Excel(name = "本期车流量") + @Excel(name = "本期车流量(辆)") private String currentData; /** 去年同期 */ - @Excel(name = "去年同期") + @Excel(name = "去年同期(辆)") private String contemporaneousData; public String getTime() { diff --git a/zc-business/src/main/java/com/zc/business/domain/export/TrendsPublishManage.java b/zc-business/src/main/java/com/zc/business/domain/export/TrendsPublishManage.java index 2c68c5f5..6fdefaff 100644 --- a/zc-business/src/main/java/com/zc/business/domain/export/TrendsPublishManage.java +++ b/zc-business/src/main/java/com/zc/business/domain/export/TrendsPublishManage.java @@ -20,13 +20,13 @@ public class TrendsPublishManage extends BaseEntity private String publishTime; /** 情报板 */ - @Excel(name = "情报板") + @Excel(name = "情报板(次)") private String board; /** 语音广播 */ - @Excel(name = "语音广播") + @Excel(name = "语音广播(次)") private String broadcast; /** 企业微信 */ - @Excel(name = "企业微信") + @Excel(name = "企业微信(次)") private String weChat; public String getPublishTime() { diff --git a/zc-business/src/main/resources/mapper/business/DcPerceivedEventsWarningMapper.xml b/zc-business/src/main/resources/mapper/business/DcPerceivedEventsWarningMapper.xml index 30f1b1e7..f8beab84 100644 --- a/zc-business/src/main/resources/mapper/business/DcPerceivedEventsWarningMapper.xml +++ b/zc-business/src/main/resources/mapper/business/DcPerceivedEventsWarningMapper.xml @@ -664,7 +664,7 @@ ORDER BY number DESC