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
f89fcfcd
Commit
f89fcfcd
authored
Jul 13, 2023
by
周昊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、添加固有风险字段
parent
d6dda361
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
96 additions
and
10 deletions
+96
-10
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/RiskPlanInherentList.java
.../censoft/censoftrongtong/domain/RiskPlanInherentList.java
+76
-4
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/dto/RiskInherentListSaveDto.java
...t/censoftrongtong/domain/dto/RiskInherentListSaveDto.java
+20
-6
No files found.
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/RiskPlanInherentList.java
View file @
f89fcfcd
...
...
@@ -87,14 +87,38 @@ public class RiskPlanInherentList extends BaseEntity
@Excel
(
name
=
"工程技术措施附件"
)
private
String
measuresProjectFileIds
;
/** 管理措施 */
@Excel
(
name
=
"管理措施"
)
/**
应采取的
管理措施 */
@Excel
(
name
=
"
应采取的
管理措施"
)
private
String
measuresAdministration
;
/** 管理措施附件 */
@Excel
(
name
=
"管理措施附件"
)
/** 已采取的管理措施 */
@Excel
(
name
=
"已采取的管理措施"
)
private
String
takenMeasuresAdministration
;
/** 管控责任单位id */
@Excel
(
name
=
"管控责任单位id"
)
private
Long
measuresDeptId
;
/** 管控责任人id */
@Excel
(
name
=
"管控责任人id"
)
private
String
measuresUserId
;
/** 已采取的管理措施 */
@Excel
(
name
=
"已采取的管理措施附件"
)
private
String
measuresAdministrationFileIds
;
/** 危险源名称 */
@Excel
(
name
=
"危险源名称"
)
private
String
hazardSourceName
;
/** 是否存在重大危险源 */
@Excel
(
name
=
"是否存在重大危险源"
)
private
Boolean
majorHazardSource
;
/** 重大危险源描述 */
@Excel
(
name
=
"重大危险源描述"
)
private
Boolean
majorHazardSourceDescription
;
/** 应急处置措施 */
@Excel
(
name
=
"应急处置措施"
)
private
String
measuresEmergency
;
...
...
@@ -325,6 +349,54 @@ public class RiskPlanInherentList extends BaseEntity
this
.
riskSeverity
=
riskSeverity
;
}
public
String
getTakenMeasuresAdministration
()
{
return
takenMeasuresAdministration
;
}
public
void
setTakenMeasuresAdministration
(
String
takenMeasuresAdministration
)
{
this
.
takenMeasuresAdministration
=
takenMeasuresAdministration
;
}
public
Long
getMeasuresDeptId
()
{
return
measuresDeptId
;
}
public
void
setMeasuresDeptId
(
Long
measuresDeptId
)
{
this
.
measuresDeptId
=
measuresDeptId
;
}
public
String
getMeasuresUserId
()
{
return
measuresUserId
;
}
public
void
setMeasuresUserId
(
String
measuresUserId
)
{
this
.
measuresUserId
=
measuresUserId
;
}
public
String
getHazardSourceName
()
{
return
hazardSourceName
;
}
public
void
setHazardSourceName
(
String
hazardSourceName
)
{
this
.
hazardSourceName
=
hazardSourceName
;
}
public
Boolean
getMajorHazardSource
()
{
return
majorHazardSource
;
}
public
void
setMajorHazardSource
(
Boolean
majorHazardSource
)
{
this
.
majorHazardSource
=
majorHazardSource
;
}
public
Boolean
getMajorHazardSourceDescription
()
{
return
majorHazardSourceDescription
;
}
public
void
setMajorHazardSourceDescription
(
Boolean
majorHazardSourceDescription
)
{
this
.
majorHazardSourceDescription
=
majorHazardSourceDescription
;
}
@Override
public
String
toString
()
{
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
...
...
censoft-rongtong/src/main/java/com/censoft/censoftrongtong/domain/dto/RiskInherentListSaveDto.java
View file @
f89fcfcd
package
com
.
censoft
.
censoftrongtong
.
domain
.
dto
;
import
com.ruoyi.common.annotation.Excel
;
import
com.ruoyi.common.core.domain.BaseEntity
;
import
lombok.Data
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
/**
* 固有风险清单库对象 risk_inherent_list
*
*
* @author ruoyi
* @date 2023-06-26
*/
...
...
@@ -51,12 +47,30 @@ public class RiskInherentListSaveDto{
/** 工程技术措施附件 */
private
String
measuresProjectFileIds
;
/** 管理措施 */
/**
应采取的
管理措施 */
private
String
measuresAdministration
;
/** 已采取的管理措施 */
private
String
takenMeasuresAdministration
;
/** 管控责任单位id */
private
Long
measuresDeptId
;
/** 管控责任人id */
private
String
measuresUserId
;
/** 管理措施附件 */
private
String
measuresAdministrationFileIds
;
/** 危险源名称 */
private
String
hazardSourceName
;
/** 是否存在重大危险源 */
private
Boolean
majorHazardSource
;
/** 重大危险源描述 */
private
Boolean
majorHazardSourceDescription
;
/** 应急处置措施 */
private
String
measuresEmergency
;
...
...
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