Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
RuoYi-Vue-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
融通安全管理系统
RuoYi-Vue-master
Commits
a029c285
Commit
a029c285
authored
Jul 18, 2023
by
周昊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、添加app端固有风险详情字段
parent
fb61f7e5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
2 deletions
+58
-2
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/dto/RiskPlanAppInherentListDetailsDto.java
...ongtong/domain/dto/RiskPlanAppInherentListDetailsDto.java
+47
-2
censoft-rongtong/src/main/resources/mapper/system/RiskPlanInherentListMapper.xml
...in/resources/mapper/system/RiskPlanInherentListMapper.xml
+11
-0
No files found.
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/dto/RiskPlanAppInherentListDetailsDto.java
View file @
a029c285
...
@@ -49,10 +49,20 @@ public class RiskPlanAppInherentListDetailsDto {
...
@@ -49,10 +49,20 @@ public class RiskPlanAppInherentListDetailsDto {
/** 风险源名称 */
/** 风险源名称 */
private
String
name
;
private
String
name
;
/**
* 风险点类型
*/
private
String
pointType
;
/**
* 安全警示标志
*/
private
String
safetyWarningSigns
;
/** 风险因素 */
/** 风险因素 */
private
String
factor
;
private
String
factor
;
/** 事故类型 */
/**
准
事故类型 */
private
String
type
;
private
String
type
;
/** 风险等级 */
/** 风险等级 */
...
@@ -76,15 +86,50 @@ public class RiskPlanAppInherentListDetailsDto {
...
@@ -76,15 +86,50 @@ public class RiskPlanAppInherentListDetailsDto {
/** 工程技术措施附件 */
/** 工程技术措施附件 */
private
List
<
SysUploadFile
>
measuresProjectFile
;
private
List
<
SysUploadFile
>
measuresProjectFile
;
/** 管理措施 */
/**
应采取的
管理措施 */
private
String
measuresAdministration
;
private
String
measuresAdministration
;
/**
* 管控责任单位id
*/
private
Long
measuresDeptId
;
/**
* 管控责任单位
*/
private
String
measuresDeptName
;
/**
* 管控责任人id
*/
private
Long
measuresUserId
;
/**
* 管控责任人
*/
private
Long
measuresUserName
;
/** 管理措施附件 */
/** 管理措施附件 */
private
String
measuresAdministrationFileIds
;
private
String
measuresAdministrationFileIds
;
/** 管理措施附件 */
/** 管理措施附件 */
private
List
<
SysUploadFile
>
measuresAdministrationFile
;
private
List
<
SysUploadFile
>
measuresAdministrationFile
;
/**
* 危险源名称
*/
private
String
hazardSourceName
;
/**
* 是否存在重大危险源
*/
private
Boolean
majorHazardSource
;
/**
* 重大危险源描述
*/
private
String
majorHazardSourceDescription
;
/** 应急处置措施 */
/** 应急处置措施 */
private
String
measuresEmergency
;
private
String
measuresEmergency
;
...
...
censoft-rongtong/src/main/resources/mapper/system/RiskPlanInherentListMapper.xml
View file @
a029c285
...
@@ -45,6 +45,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -45,6 +45,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
lr.id AS roomId,
lr.id AS roomId,
lr.`name` AS roomName,
lr.`name` AS roomName,
rpil.`name`,
rpil.`name`,
rpil.point_type as pointType,
rpil.safety_warning_signs as safetyWarningSigns,
rpil.factor,
rpil.factor,
rpil.type,
rpil.type,
rpil.`level`,
rpil.`level`,
...
@@ -55,7 +57,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -55,7 +57,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
rpil.measures_project AS measuresProject,
rpil.measures_project AS measuresProject,
rpil.measures_project_file_ids AS measuresProjectFileIds,
rpil.measures_project_file_ids AS measuresProjectFileIds,
rpil.measures_administration AS measuresAdministration,
rpil.measures_administration AS measuresAdministration,
sd.dept_id as measuresDeptId,
sd.dept_name as measuresDeptName,
su2.user_id AS measuresUserId,
su2.nick_name AS measuresUserName,
rpil.measures_administration_file_ids AS measuresAdministrationFileIds,
rpil.measures_administration_file_ids AS measuresAdministrationFileIds,
rpil.hazard_source_name AS hazardSourceName,
rpil.major_hazard_source AS majorHazardSource,
rpil.major_hazard_source_description AS majorHazardSourceDescription,
rpil.measures_emergency AS measuresEmergency,
rpil.measures_emergency AS measuresEmergency,
rpil.measures_emergency_file_ids AS measuresEmergencyFileIds,
rpil.measures_emergency_file_ids AS measuresEmergencyFileIds,
rpil.reference_basis AS referenceBasis
rpil.reference_basis AS referenceBasis
...
@@ -67,6 +76,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -67,6 +76,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
LEFT JOIN ledger_room lr ON lr.id = rpil.room_id
LEFT JOIN ledger_room lr ON lr.id = rpil.room_id
LEFT JOIN ledger_floor lf ON lf.id = lr.floor_id
LEFT JOIN ledger_floor lf ON lf.id = lr.floor_id
LEFT JOIN ledger_building lb ON lb.id = lf.building_id
LEFT JOIN ledger_building lb ON lb.id = lf.building_id
LEFT JOIN sys_dept sd ON sd.dept_id = rpil.measures_dept_id
LEFT JOIN sys_user su2 ON su2.user_id = rpil.measures_user_id
WHERE
WHERE
rpil.id = #{inherentId}
rpil.id = #{inherentId}
</select>
</select>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment