listDevice)
{
for (DcDevice dcDevice : listDevice) {
middleDatabaseMapper.updateMiddleDatabaseDevice(dcDevice);
}
return true;
}
+
+
+ /**
+ * 更新中间库设备
+ *
+ * @param device 设备
+ * @return 结果
+ */
+ @DataSource(value = DataSourceType.SLAVE)//切换数据源
+ @Override
+ public boolean updateMiddleDatabaseDevice(DcDevice device)
+ {
+ return middleDatabaseMapper.updateMiddleDatabaseDevice(device);
+ }
}
From 38642337f22694dfd2ed130fd81e797cc62d3e14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=8B=E5=85=B4=E7=90=B3?= <1911390090@qq.com>
Date: Wed, 21 Feb 2024 10:22:38 +0800
Subject: [PATCH 8/9] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AD=97=E6=AE=B5=20?=
=?UTF-8?q?=E6=96=BD=E5=B7=A5=E5=BB=BA=E8=AE=BE=E4=BA=8B=E4=BB=B6=E8=A1=A8?=
=?UTF-8?q?(location,localRoadName,endStakeMark)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../business/domain/DcEventConstruction.java | 127 ++++++++++--------
.../business/DcEventConstructionMapper.xml | 17 ++-
2 files changed, 90 insertions(+), 54 deletions(-)
diff --git a/zc-business/src/main/java/com/zc/business/domain/DcEventConstruction.java b/zc-business/src/main/java/com/zc/business/domain/DcEventConstruction.java
index 327134d0..28b94856 100644
--- a/zc-business/src/main/java/com/zc/business/domain/DcEventConstruction.java
+++ b/zc-business/src/main/java/com/zc/business/domain/DcEventConstruction.java
@@ -1,21 +1,19 @@
package com.zc.business.domain;
import com.baomidou.mybatisplus.annotation.TableField;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
-import org.apache.commons.lang3.builder.ToStringBuilder;
-import org.apache.commons.lang3.builder.ToStringStyle;
-import com.ruoyi.common.annotation.Excel;
-import com.ruoyi.common.core.domain.BaseEntity;
/**
* 施工建设事件
-
-"施工分类"为事件“事件子类”对象 dc_event_construction
- *
+ *
+ * "施工分类"为事件“事件子类”对象 dc_event_construction
+ *
* @author ruoyi
* @date 2024-01-12
*/
@@ -23,81 +21,104 @@ import com.ruoyi.common.core.domain.BaseEntity;
@Data
@AllArgsConstructor
@NoArgsConstructor
-public class DcEventConstruction extends BaseEntity
-{
+public class DcEventConstruction extends BaseEntity {
private static final long serialVersionUID = 1L;
-@ApiModelProperty("事件编号")
+ @ApiModelProperty("事件编号")
/** 事件编号 */
private String id;
- /** 管制方式:
- 1-封闭
- 2-不封闭 */
-@ApiModelProperty("管制方式")
+ /**
+ * 管制方式:
+ * 1-封闭
+ * 2-不封闭
+ */
+ @ApiModelProperty("管制方式")
private Long controlMode;
- /** 地点类型:
- 1-单点
- 2-多点 */
-@ApiModelProperty("地点类型:1-单点2-多点")
+ /**
+ * 地点类型:
+ * 1-单点
+ * 2-多点
+ */
+ @ApiModelProperty("地点类型:1-单点2-多点")
private Long locationType;
- /** 特殊地点描述 */
+ /**
+ * 特殊地点描述
+ */
@Excel(name = "特殊地点描述")
@ApiModelProperty("特殊地点描述")
private String specialPlaceDescription;
- /** 专项施工:
- 1-专项工程施工
- 2-改扩建专项工程施工
- 3-桥梁专项工程施工
- 4-其他专项工程施工 */
-@ApiModelProperty(" 专项施工:1-专项工程施工2-改扩建专项工程施工3-桥梁专项工程施工\4-其他专项工程施工 ")
+ /**
+ * 专项施工:
+ * 1-专项工程施工
+ * 2-改扩建专项工程施工
+ * 3-桥梁专项工程施工
+ * 4-其他专项工程施工
+ */
+ @ApiModelProperty(" 专项施工:1-专项工程施工2-改扩建专项工程施工3-桥梁专项工程施工\4-其他专项工程施工 ")
private Long specialConstruction;
- /** 其他施工名称 */
+ /**
+ * 其他施工名称
+ */
@Excel(name = "其他施工名称")
@ApiModelProperty("其他施工名称")
private String otherConstructionName;
- /** 施工措施:
- 0-无
- 1-并道行驶
- 2-临时保通
- 3-借路侧服务区通行 */
-@ApiModelProperty("施工措施 0-无1-并道行驶2-临时保通3-借路侧服务区通行")
+ /**
+ * 施工措施:
+ * 0-无
+ * 1-并道行驶
+ * 2-临时保通
+ * 3-借路侧服务区通行
+ */
+ @ApiModelProperty("施工措施 0-无1-并道行驶2-临时保通3-借路侧服务区通行")
private Long constructionMeasurement;
- /** 字段名称对应:
- 互通立交
- 收费站
- 服务区
-
- */
-@ApiModelProperty("字段名称对应:互通立交 收费站 服务区")
+ /**
+ * 字段名称对应:
+ * 互通立交
+ * 收费站
+ * 服务区
+ */
+ @ApiModelProperty("字段名称对应:互通立交 收费站 服务区")
private Long facilityId;
- /** 出入口(收费站/服务区):
- 1-出口
- 2-入口 */
+ /**
+ * 出入口(收费站/服务区):
+ * 1-出口
+ * 2-入口
+ */
@ApiModelProperty(" 出入口(收费站/服务区):1-出口 2-入口 ")
@Excel(name = "出入口", readConverterExp = "收=费站/服务区")
private Long exitsInlets;
- /** 占用车道
- */
-@ApiModelProperty("占用车道")
+ /**
+ * 占用车道
+ */
+ @ApiModelProperty("占用车道")
private String laneOccupancy;
- /** 通行情况:
- 1-通行正常
- 2-通行受阻 */
-@ApiModelProperty("通行情况:1-通行正常 2-通行受阻")
+ /**
+ * 通行情况:
+ * 1-通行正常
+ * 2-通行受阻
+ */
+ @ApiModelProperty("通行情况:1-通行正常 2-通行受阻")
private Long trafficCondition;
-@ApiModelProperty("匝道")
-private Long rampId;
-@ApiModelProperty("施工方式")
-private Long constructionMethod;
+ @ApiModelProperty("匝道")
+ private Long rampId;
+ @ApiModelProperty("施工方式")
+ private Long constructionMethod;
+ @ApiModelProperty("地方道路名称")
+ private String localRoadName;
+ @ApiModelProperty("结束桩号")
+ private String endStakeMark;
+ @ApiModelProperty("地点")
+ private String location;
+
@ApiModelProperty("事件信息实体")
//事件信息表
diff --git a/zc-business/src/main/resources/mapper/business/DcEventConstructionMapper.xml b/zc-business/src/main/resources/mapper/business/DcEventConstructionMapper.xml
index 92c2e7cd..16de9bcc 100644
--- a/zc-business/src/main/resources/mapper/business/DcEventConstructionMapper.xml
+++ b/zc-business/src/main/resources/mapper/business/DcEventConstructionMapper.xml
@@ -16,6 +16,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+
+
+
@@ -26,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- select id, control_mode, location_type, special_place_description, special_construction, other_construction_name, construction_measurement, facility_id, exits_inlets, lane_occupancy, traffic_condition from dc_event_construction
+ select location,local_road_name,end_stake_mark,id, control_mode, location_type, special_place_description, special_construction, other_construction_name, construction_measurement, facility_id, exits_inlets, lane_occupancy, traffic_condition from dc_event_construction
SELECT
@@ -41,6 +44,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
dc_event_construction.exits_inlets as exits_inlets,
dc_event_construction.lane_occupancy as lane_occupancy,
dc_event_construction.traffic_condition as traffic_condition,
+ dc_event_construction.local_road_name as local_road_name,
+ dc_event_construction.end_stake_mark as end_stake_mark,
+ dc_event_construction.location as location,
dc_facility.other_config as other_config,
dc_facility.remark as remark,
dc_facility.stake_mark as stake_mark,
@@ -86,6 +92,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
exits_inlets,
lane_occupancy,
traffic_condition,
+ end_stake_mark,
+ local_road_name,
+ location,
#{id},
@@ -99,6 +108,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{exitsInlets},
#{laneOccupancy},
#{trafficCondition},
+ #{endStakeMark},
+ #{localRoadName},
+ #{location},
@@ -115,6 +127,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
exits_inlets = #{exitsInlets},
lane_occupancy = #{laneOccupancy},
traffic_condition = #{trafficCondition},
+ end_stake_mark = #{endStakeMark},
+ local_road_name = #{localRoadName},
+ location = #{location},
where id = #{id}
From 8e3b45052d6d0775da2edc7f1fe6fa40dbce8802 Mon Sep 17 00:00:00 2001
From: lau572 <1010031226@qq.com>
Date: Wed, 21 Feb 2024 11:23:59 +0800
Subject: [PATCH 9/9] =?UTF-8?q?=E5=A4=9A=E8=B5=84=E6=BA=90=E9=85=8D?=
=?UTF-8?q?=E7=BD=AE=20=E4=B8=AD=E9=97=B4=E5=BA=93?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
ruoyi-admin/src/main/resources/application-druid.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/ruoyi-admin/src/main/resources/application-druid.yml b/ruoyi-admin/src/main/resources/application-druid.yml
index 9849822d..b66131c4 100644
--- a/ruoyi-admin/src/main/resources/application-druid.yml
+++ b/ruoyi-admin/src/main/resources/application-druid.yml
@@ -15,10 +15,10 @@ spring:
# 从库数据源
slave:
# 从数据源开关/默认关闭
- enabled: false
- url:
- username:
- password:
+ enabled: true
+ url: jdbc:mysql://10.168.56.204:3306/jihe-md?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true
+ username: root
+ password: Platform123!@#
# 初始连接数
initialSize: 5
# 最小连接池数量