Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
d452ff3d
Commit
d452ff3d
authored
Sep 30, 2022
by
zhangsen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop_dl_plan6' into develop_dl_plan6_temp
parents
ae8f4141
4e35d715
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
CommonPageInfoParam.java
...yeejoin/equipmanage/common/utils/CommonPageInfoParam.java
+10
-0
CommonPageParamUtil.java
...yeejoin/equipmanage/common/utils/CommonPageParamUtil.java
+2
-0
EquipmentSpecificAlarmMapper.xml
...rc/main/resources/mapper/EquipmentSpecificAlarmMapper.xml
+1
-1
No files found.
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/utils/CommonPageInfoParam.java
View file @
d452ff3d
...
...
@@ -84,6 +84,16 @@ public class CommonPageInfoParam extends CommonPageable {
private
String
orgCode
;
private
Long
alarmLogId
;
public
Long
getAlarmLogId
()
{
return
alarmLogId
;
}
public
void
setAlarmLogId
(
Long
alarmLogId
)
{
this
.
alarmLogId
=
alarmLogId
;
}
/**
* 筛选条件-告警类型
*/
...
...
amos-boot-module/amos-boot-module-api/amos-boot-module-equip-api/src/main/java/com/yeejoin/equipmanage/common/utils/CommonPageParamUtil.java
View file @
d452ff3d
...
...
@@ -73,6 +73,8 @@ public class CommonPageParamUtil {
param
.
setFireEquipmentSpecificIndexKey
(
toString
(
queryRequests
.
get
(
i
).
getValue
()));
}
else
if
(
"indexTypeCode"
.
equals
(
name
)){
param
.
setIndexTypeCode
(
toString
(
queryRequests
.
get
(
i
).
getValue
()));
}
else
if
(
"alarmLogId"
.
equals
(
name
))
{
param
.
setAlarmLogId
(
toLong
(
queryRequests
.
get
(
i
).
getValue
()));
}
}
if
(
commonPageable
!=
null
){
...
...
amos-boot-system-equip/src/main/resources/mapper/EquipmentSpecificAlarmMapper.xml
View file @
d452ff3d
...
...
@@ -353,7 +353,7 @@
<if
test=
"param.bizOrgCode != null and param.bizOrgCode != ''"
>
AND
wls.biz_org_code like concat (#{param.bizOrgCode},'%')
</if>
<if
test=
"param.alarmLogId != null"
>
AND
<if
test=
"param.alarmLogId != null"
>
and wlesal.id = #{alarmLogId}
</if>
<if
test=
"param.warehouseStructureName != null and param.warehouseStructureName != ''"
>
...
...
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