Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YeeAmosFireAutoSysRoot
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
station
YeeAmosFireAutoSysRoot
Commits
c396881e
Commit
c396881e
authored
Dec 15, 2020
by
zhengjiawei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
b2e1de00
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
123 additions
and
108 deletions
+123
-108
RiskModelController.java
...oin/amos/fas/business/controller/RiskModelController.java
+0
-0
RiskSourceMapper.java
...eejoin/amos/fas/business/dao/mapper/RiskSourceMapper.java
+109
-107
RiskSourceServiceImpl.java
...amos/fas/business/service/impl/RiskSourceServiceImpl.java
+5
-1
dbTemplate_risk_source.xml
...t/src/main/resources/db/mapper/dbTemplate_risk_source.xml
+9
-0
No files found.
YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/controller/RiskModelController.java
View file @
c396881e
This diff is collapsed.
Click to expand it.
YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/dao/mapper/RiskSourceMapper.java
View file @
c396881e
package
com
.
yeejoin
.
amos
.
fas
.
business
.
dao
.
mapper
;
import
java.math.BigDecimal
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
org.apache.ibatis.annotations.Param
;
import
com.yeejoin.amos.fas.business.bo.BindRegionBo
;
import
com.yeejoin.amos.fas.business.param.CommonPageInfoParam
;
import
com.yeejoin.amos.fas.core.common.response.RegionTreeResponse
;
import
com.yeejoin.amos.fas.core.common.response.RiskSourceTreeResponse
;
import
com.yeejoin.amos.fas.dao.entity.RiskSource
;
public
interface
RiskSourceMapper
extends
BaseMapper
{
/**
* 风险点查询,分页查询统计用
*
* @param param
* @return
*/
long
countPageData
(
CommonPageInfoParam
param
);
/**
* 风险点分页查询queryForRiskSourceLevel
*
* @param param
* @return
*/
List
<
HashMap
<
String
,
Object
>>
queryRiskSourceByPage
(
CommonPageInfoParam
param
);
List
<
Map
>
queryForRegion
();
List
<
Map
>
queryRPNReport
();
Map
queryForRiseUp
(
@Param
(
"startTime"
)
String
startTime
,
@Param
(
"endTime"
)
String
endTime
);
Long
countByParentIdAndIsRegion
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
,
@Param
(
"isRegion"
)
String
isRegion
);
List
<
Map
>
queryForMatrix
();
List
<
RiskSourceTreeResponse
>
getRiskSources
(
String
compCode
);
List
<
RiskSourceTreeResponse
>
getRiskSourcesEquipment
();
List
<
RiskSource
>
queryByFireEqument
(
@Param
(
"fireEquipmentId"
)
Long
fireEquipmentId
);
List
<
RiskSource
>
queryByPoint
(
@Param
(
"pointId"
)
Long
pointId
);
//厂区rpn,重点设备个数,风险点个数,巡检点个数
Map
<
String
,
List
>
statistics3dCount
();
//消防设备按分类统计个数
List
<
Map
>
statisticsEquipClassify
();
//风险点按级别统计个数
List
<
Map
>
statisticsRiskLevel
();
//巡检点按状态统计个数
List
<
Map
>
statisticsPointStatus
();
RiskSourceTreeResponse
findRiskSourceDetatil
(
@Param
(
"id"
)
Long
id
);
//风险点详情和级别
Map
queryForRiskSourceLevel
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
);
List
<
Map
>
queryForUnqualified
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
);
List
<
Map
>
queryForFmeaEquipAlarm
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
);
/**
* 子节点的rpni
*
* @param parentId
* @return
*/
List
<
Map
<
String
,
BigDecimal
>>
queryForRiskSourceRpni
(
@Param
(
"parentId"
)
Long
parentId
);
List
<
HashMap
<
String
,
Object
>>
queryRiskAreaRpn
();
List
<
RiskSource
>
queryByFactor
(
@Param
(
"factorId"
)
Long
factorId
);
List
<
HashMap
<
String
,
Object
>>
queryRiskSourceSecondLevel
(
String
compCode
);
List
<
RiskSourceTreeResponse
>
getRiskSourcesFireEquipmentByType
(
@Param
(
"type"
)
String
[]
type
);
List
<
RiskSourceTreeResponse
>
getCheckPointRiskSource
();
List
<
Map
>
queryContingencyWater
();
List
<
Map
>
queryFmeaByPointId
(
@Param
(
"pointId"
)
Long
pointId
);
void
updateRpn
(
RiskSource
riskSource
);
List
<
RegionTreeResponse
>
getRegionList
(
String
channelType
,
String
orgCode
);
HashMap
<
String
,
Object
>
findRegionById
(
@Param
(
"id"
)
Long
id
,
@Param
(
"orgCode"
)
String
orgCode
,
@Param
(
"channelType"
)
String
channelType
);
void
batchSaveRegionUe4
(
List
<
BindRegionBo
>
regionBoList
);
}
package
com
.
yeejoin
.
amos
.
fas
.
business
.
dao
.
mapper
;
import
java.math.BigDecimal
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
org.apache.ibatis.annotations.Param
;
import
com.yeejoin.amos.fas.business.bo.BindRegionBo
;
import
com.yeejoin.amos.fas.business.param.CommonPageInfoParam
;
import
com.yeejoin.amos.fas.core.common.response.RegionTreeResponse
;
import
com.yeejoin.amos.fas.core.common.response.RiskSourceTreeResponse
;
import
com.yeejoin.amos.fas.dao.entity.RiskSource
;
public
interface
RiskSourceMapper
extends
BaseMapper
{
/**
* 风险点查询,分页查询统计用
*
* @param param
* @return
*/
long
countPageData
(
CommonPageInfoParam
param
);
/**
* 风险点分页查询queryForRiskSourceLevel
*
* @param param
* @return
*/
List
<
HashMap
<
String
,
Object
>>
queryRiskSourceByPage
(
CommonPageInfoParam
param
);
List
<
Map
>
queryForRegion
();
List
<
Map
>
queryRPNReport
();
Map
queryForRiseUp
(
@Param
(
"startTime"
)
String
startTime
,
@Param
(
"endTime"
)
String
endTime
);
Long
countByParentIdAndIsRegion
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
,
@Param
(
"isRegion"
)
String
isRegion
);
List
<
Map
>
queryForMatrix
();
List
<
RiskSourceTreeResponse
>
getRiskSources
(
String
compCode
);
List
<
RiskSourceTreeResponse
>
getRiskSourcesEquipment
();
List
<
RiskSource
>
queryByFireEqument
(
@Param
(
"fireEquipmentId"
)
Long
fireEquipmentId
);
List
<
RiskSource
>
queryByPoint
(
@Param
(
"pointId"
)
Long
pointId
);
//厂区rpn,重点设备个数,风险点个数,巡检点个数
Map
<
String
,
List
>
statistics3dCount
();
//消防设备按分类统计个数
List
<
Map
>
statisticsEquipClassify
();
//风险点按级别统计个数
List
<
Map
>
statisticsRiskLevel
();
//巡检点按状态统计个数
List
<
Map
>
statisticsPointStatus
();
RiskSourceTreeResponse
findRiskSourceDetatil
(
@Param
(
"id"
)
Long
id
);
//风险点详情和级别
Map
queryForRiskSourceLevel
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
);
List
<
Map
>
queryForUnqualified
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
);
List
<
Map
>
queryForFmeaEquipAlarm
(
@Param
(
"riskSourceId"
)
Long
riskSourceId
);
/**
* 子节点的rpni
*
* @param parentId
* @return
*/
List
<
Map
<
String
,
BigDecimal
>>
queryForRiskSourceRpni
(
@Param
(
"parentId"
)
Long
parentId
);
List
<
HashMap
<
String
,
Object
>>
queryRiskAreaRpn
();
List
<
RiskSource
>
queryByFactor
(
@Param
(
"factorId"
)
Long
factorId
);
List
<
HashMap
<
String
,
Object
>>
queryRiskSourceSecondLevel
(
String
compCode
);
List
<
RiskSourceTreeResponse
>
getRiskSourcesFireEquipmentByType
(
@Param
(
"type"
)
String
[]
type
);
List
<
RiskSourceTreeResponse
>
getCheckPointRiskSource
();
List
<
Map
>
queryContingencyWater
();
List
<
Map
>
queryFmeaByPointId
(
@Param
(
"pointId"
)
Long
pointId
);
void
updateRpn
(
RiskSource
riskSource
);
void
updateRpnForNull
(
RiskSource
riskSource
);
List
<
RegionTreeResponse
>
getRegionList
(
String
channelType
,
String
orgCode
);
HashMap
<
String
,
Object
>
findRegionById
(
@Param
(
"id"
)
Long
id
,
@Param
(
"orgCode"
)
String
orgCode
,
@Param
(
"channelType"
)
String
channelType
);
void
batchSaveRegionUe4
(
List
<
BindRegionBo
>
regionBoList
);
}
YeeAmosFireAutoSysService/src/main/java/com/yeejoin/amos/fas/business/service/impl/RiskSourceServiceImpl.java
View file @
c396881e
...
...
@@ -1652,7 +1652,7 @@ public class RiskSourceServiceImpl implements IRiskSourceService {
riskSource
.
setRiskLevelId
(
null
);
riskSource
.
setFlickerFrequency
(
0
);
//1.更新fmea对应风险点rpn、rpni、level
riskSourceMapper
.
updateRpn
(
riskSource
);
riskSourceMapper
.
updateRpn
ForNull
(
riskSource
);
//2.记录风险点rpn变化流水
this
.
saveRpnLog
(
riskSource
.
getId
(),
fmeaId
,
resetValue
,
resetValue
,
notifyType
);
...
...
@@ -1818,6 +1818,10 @@ public class RiskSourceServiceImpl implements IRiskSourceService {
List
<
Fmea
>
fmeas
=
fmeaMapper
.
listByRiskSourceIds
(
ids
);
RpnCalculationBo
rpnValueBo
=
RpnUtils
.
calRpnAndRpni
(
fmeas
);
if
(
rpnValueBo
.
isEmpty
())
{
riskSource
.
setRpn
(
null
);
riskSource
.
setRpni
(
null
);
riskSource
.
setRiskLevelId
(
null
);
iRiskSourceDao
.
save
(
riskSource
);
return
;
}
BigDecimal
rpn
=
rpnValueBo
.
getRpn
();
...
...
YeeAmosFireAutoSysStart/src/main/resources/db/mapper/dbTemplate_risk_source.xml
View file @
c396881e
...
...
@@ -701,6 +701,15 @@
parent_id = #{riskSourceId}
</select>
<update
id=
"updateRpnForNull"
>
update f_risk_source
set
rpn = null,
rpni = null,
risk_level_id = null,
flicker_frequency = null
where id = #{id}
</update>
<update
id=
"updateRpn"
>
update f_risk_source
<set>
...
...
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