From ce187f458ff64bc2701db6159fe3c9244d3c84c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=85=B4=E7=90=B3?= <1911390090@qq.com> Date: Tue, 20 Feb 2024 10:36:18 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E5=AF=BC=E5=87=BAExcel=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zc-business/pom.xml | 4 ++++ .../main/java/com/zc/business/domain/DcEvent.java | 14 +++++++++----- .../business/service/impl/DcEventServiceImpl.java | 14 ++++++++++++++ .../resources/mapper/business/DcEventMapper.xml | 3 ++- 4 files changed, 29 insertions(+), 6 deletions(-) diff --git a/zc-business/pom.xml b/zc-business/pom.xml index e83ad99b..275f2980 100644 --- a/zc-business/pom.xml +++ b/zc-business/pom.xml @@ -39,6 +39,10 @@ + + com.ruoyi + ruoyi-system + com.zc 1.0.0 diff --git a/zc-business/src/main/java/com/zc/business/domain/DcEvent.java b/zc-business/src/main/java/com/zc/business/domain/DcEvent.java index a48aec33..1bb5a05b 100644 --- a/zc-business/src/main/java/com/zc/business/domain/DcEvent.java +++ b/zc-business/src/main/java/com/zc/business/domain/DcEvent.java @@ -40,8 +40,10 @@ public class DcEvent extends BaseEntity { * 所属部门 */ @ApiModelProperty("所属部门") - @Excel(name = "所属部门") private Long deptId; + @Excel(name = "所属部门") + private String deptName; + /** * 所在桩号 */ @@ -59,7 +61,8 @@ public class DcEvent extends BaseEntity { * 2-中 * 3-下 */ - @Excel(name = "方向") + @Excel(name = "方向", readConverterExp = "1=上行,3=下行") + //@Excel(name = "方向") @ApiModelProperty("方向") private String direction; /** @@ -196,10 +199,10 @@ public class DcEvent extends BaseEntity { /** * 是否处在隧道 */ - @Excel(name = "是否处在隧道") + @Excel(name = "是否处在隧道" , readConverterExp = "0=否,1=是") @ApiModelProperty("是否处在隧道 0 表示 false,1 表示 true") private Integer inTunnel; - @Excel(name = "高速") + //@Excel(name = "高速") @ApiModelProperty("高速公路") private Long roadId; @@ -210,9 +213,10 @@ public class DcEvent extends BaseEntity { @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty("发生时间") private Date occurrenceTime; - @Excel(name = "是否是感知事件") + @Excel(name = "是否是感知事件" , readConverterExp = "0=否,1=是") @ApiModelProperty("是否是感知事件 0 表示 false,1 表示 true") private Integer isPerceived; + @Excel(name = "影响车道") @ApiModelProperty("影响车道 车道占用:0-应急1-行1,2-行2,3-行3,4-行4") private String lang; diff --git a/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java b/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java index 2d18296f..ca48c068 100644 --- a/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java +++ b/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java @@ -8,6 +8,7 @@ import java.util.Map; import com.ruoyi.common.utils.DateUtils; import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.common.utils.uuid.IdUtils; +import com.ruoyi.system.service.ISysDeptService; import com.zc.business.domain.*; import com.zc.business.mapper.*; import com.zc.business.service.IDcEventService; @@ -54,6 +55,9 @@ private DcEventAbnormalWeatherMapper dcEventAbnormalWeatherMapper; private DcProcessConfigMapper dcProcessConfigMapper; @Autowired private DcWarningMapper dcWarningMapper; + //部门信息 + @Autowired + private ISysDeptService deptService; @@ -89,6 +93,16 @@ private DcEventAbnormalWeatherMapper dcEventAbnormalWeatherMapper; String replace1 = dcEvent.getEndStakeMark().replace(" ", "+"); dcEvent.setEndStakeMark(replace1); } + List dcEventList = dcEventMapper.selectDcEventList(dcEvent); + + for (DcEvent dcEvents : dcEventList) { + // 根据 deptId 获取部门名称 + Long deptId = dcEvents.getDeptId(); + String deptName = deptService.selectDeptById(deptId).getDeptName(); + + // 将部门名称赋值给 deptName 字段 + dcEvents.setDeptName(deptName); + } return dcEventMapper.selectDcEventList(dcEvent); } diff --git a/zc-business/src/main/resources/mapper/business/DcEventMapper.xml b/zc-business/src/main/resources/mapper/business/DcEventMapper.xml index bb4e6d2b..0cfd9128 100644 --- a/zc-business/src/main/resources/mapper/business/DcEventMapper.xml +++ b/zc-business/src/main/resources/mapper/business/DcEventMapper.xml @@ -246,7 +246,8 @@ event_source_tips, occurrence_time, in_tunnel, - road_id + road_id, + lang FROM dc_event LEFT JOIN sys_user on dc_event.user_id = sys_user.user_id From 810e287ee303581b66b24bb5ef5cde5d33057f7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=85=B4=E7=90=B3?= <1911390090@qq.com> Date: Tue, 20 Feb 2024 11:59:59 +0800 Subject: [PATCH 2/9] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BD=A6=E8=BE=86?= =?UTF-8?q?=E6=95=85=E9=9A=9C=E4=BA=8B=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/zc/business/service/impl/DcEventServiceImpl.java | 1 + .../mapper/business/DcEventVehicleAccidentMapper.xml | 9 ++------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java b/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java index ca48c068..a0c2b780 100644 --- a/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java +++ b/zc-business/src/main/java/com/zc/business/service/impl/DcEventServiceImpl.java @@ -126,6 +126,7 @@ dcEvent.setDeptId(SecurityUtils.getDeptId()); //用户 dcEvent.setUserId(SecurityUtils.getUserId()); + dcEvent.setCreateTime(DateUtils.getNowDate()); int i7 = dcEventMapper.insertDcEvent(dcEvent); diff --git a/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml b/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml index 4266c93c..3bf3d689 100644 --- a/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml +++ b/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml @@ -4,7 +4,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> - + @@ -14,7 +14,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - @@ -26,7 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select id, reporter_name, reporter_phone_number, location_type, traffic_jam, weather_condition, congestion_ahead, at_intersection, on_curve, lane_occupancy, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private from dc_event_vehicle_accident + select id, reporter_name, reporter_phone_number, location_type, traffic_jam, weather_condition, congestion_ahead, at_intersection, on_curve, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private from dc_event_vehicle_accident @@ -101,6 +103,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" fatalities, is_private, facility_id, + ramp_id, + location, #{id}, @@ -129,6 +133,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{fatalities}, #{isPrivate}, #{facilityId}, + #{location}, + #{rampId}, @@ -160,6 +166,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" fatalities = #{fatalities}, is_private = #{isPrivate}, facility_id = #{facilityId}, + ramp_id = #{rampId}, + location = #{location}, where id = #{id} diff --git a/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml b/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml index ded73779..4214fe7f 100644 --- a/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml +++ b/zc-business/src/main/resources/mapper/business/DcEventTrafficCongestionMapper.xml @@ -12,6 +12,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + + @@ -23,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select id, congestion_mileage, congestion_cause, facility_id, ramp_id, location,max_congestion_mileage from dc_event_traffic_congestion + select location_type,location_description,detailed_reasons,id, congestion_mileage, congestion_cause, facility_id, ramp_id, location,max_congestion_mileage from dc_event_traffic_congestion @@ -35,6 +38,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" dc_event_traffic_congestion.location as location, dc_event_traffic_congestion.ramp_id as ramp_id, dc_event_traffic_congestion.max_congestion_mileage as max_congestion_mileage, + dc_event_traffic_congestion.location_type as location_type, + dc_event_traffic_congestion.location_description as location_description, + dc_event_traffic_congestion.detailed_reasons as detailed_reasons, dc_facility.other_config as other_config, dc_facility.remark as remark, @@ -72,6 +78,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ramp_id, location, max_congestion_mileage, + location_description, + location_type, + detailed_reasons, #{id}, @@ -81,6 +90,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{rampId}, #{location}, #{maxCongestionMileage}, + #{locationDescription}, + #{locationType}, + #{detailedReasons}, @@ -93,6 +105,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ramp_id = #{rampId}, location = #{location}, max_congestion_mileage = #{maxCongestionMileage}, + location_description = #{locationDescription}, + location_type = #{locationType}, + detailed_reasons = #{detailedReasons}, where id = #{id} diff --git a/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml b/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml index 3bf3d689..a180accd 100644 --- a/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml +++ b/zc-business/src/main/resources/mapper/business/DcEventVehicleAccidentMapper.xml @@ -22,10 +22,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + + + + - select id, reporter_name, reporter_phone_number, location_type, traffic_jam, weather_condition, congestion_ahead, at_intersection, on_curve, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private from dc_event_vehicle_accident + select location,ramp_id,facility_id, id, reporter_name, reporter_phone_number, location_type, traffic_jam, weather_condition, congestion_ahead, at_intersection, on_curve, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private from dc_event_vehicle_accident