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
2362740b
Commit
2362740b
authored
Jan 03, 2024
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.规则回调方法增加参数,是否进行地市过滤,默认过滤进行地市的筛选
parent
12542e6b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
RuleActionHandler.java
...n/amos/boot/module/jyjc/biz/action/RuleActionHandler.java
+7
-1
InspectionEquipInfo.java
...n/amos/boot/module/jyjc/biz/rule/InspectionEquipInfo.java
+4
-3
No files found.
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/action/RuleActionHandler.java
View file @
2362740b
...
...
@@ -44,7 +44,13 @@ public class RuleActionHandler {
this
.
commonserviceImpl
=
commonserviceImpl
;
}
public
void
filterInspectionOrgAction
(
Object
bizObj
,
String
itemCode
)
{
/**
* 规则回调方法
* @param bizObj 请求变量参数
* @param itemCode 核对项目编码,多个用逗号分割
* @param isMatchArea 是否进行属地过滤(检验检测机构的开通区域包含设备归属地市),true-过滤,false-不过滤
*/
public
void
filterInspectionOrgAction
(
Object
bizObj
,
String
itemCode
,
Boolean
isMatchArea
)
{
InspectionEquipInfo
inspectionEquipInfo
=
(
InspectionEquipInfo
)
bizObj
;
try
{
List
<
TzBaseUnitLicence
>
unitLicenceList
=
getBaseUnitLicenceList
(
itemCode
);
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/rule/InspectionEquipInfo.java
View file @
2362740b
...
...
@@ -4,6 +4,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Map
;
/**
* @author LiuLin
...
...
@@ -19,11 +20,11 @@ public class InspectionEquipInfo implements Serializable {
@ApiModelProperty
(
value
=
"设备ID"
)
private
String
record
;
@ApiModelProperty
(
value
=
"检验类型"
)
@ApiModelProperty
(
value
=
"检验类型
(大类与菜单对应)
"
)
private
String
bizType
;
@ApiModelProperty
(
value
=
"技术参数"
)
private
Object
techParams
;
private
Map
<
String
,
Object
>
techParams
;
@ApiModelProperty
(
value
=
"是否防爆"
)
private
Boolean
isAntiExplosion
;
...
...
@@ -37,6 +38,6 @@ public class InspectionEquipInfo implements Serializable {
@ApiModelProperty
(
value
=
"设备种类"
)
private
String
equList
;
@ApiModelProperty
(
value
=
"检验类型"
)
@ApiModelProperty
(
value
=
"检验类型
(小类)
"
)
private
String
inspectionType
;
}
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