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
b01a24d2
Commit
b01a24d2
authored
Mar 05, 2025
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
超设计年限登记增加功能入口增加提示
parent
1fb2e503
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
CommonController.java
.../amos/boot/module/jg/biz/controller/CommonController.java
+19
-0
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/CommonController.java
View file @
b01a24d2
...
...
@@ -549,6 +549,25 @@ public class CommonController extends BaseController {
// 在平台字典配置的自定义业务的设备种类:格式{bizType}_SBZL,如BF_YZ_SBZL==》移装注销-设备种类
String
suffix
=
"_SBZL"
;
String
dictCode
=
bizType
+
suffix
;
List
<
JSONObject
>
result
=
new
ArrayList
<>();
List
<
DictionarieValueModel
>
resultObj
=
Systemctl
.
dictionarieClient
.
dictValues
(
dictCode
).
getResult
();
if
(
bizType
.
equals
(
"DJ_CSJ"
)){
for
(
DictionarieValueModel
dictionarieValueModel
:
resultObj
)
{
if
(
dictionarieValueModel
.
getDictCode
().
equals
(
"2000"
)){
JSONObject
jsonObject
=
JSONObject
.
parseObject
(
JSON
.
toJSONString
(
dictionarieValueModel
));
jsonObject
.
put
(
"tips"
,
"压力容器需先进行委托检验,在办理变更登记时上传委托检验报告"
);
result
.
add
(
jsonObject
);
}
else
{
JSONObject
jsonObject
=
JSONObject
.
parseObject
(
JSON
.
toJSONString
(
dictionarieValueModel
));
jsonObject
.
put
(
"tips"
,
"大型游乐设施需先进行安全评估,如评估结果为改造或重大维修,则需先办理改造告知或维修告知,进行监督检验后,再进行变更登记;如安全评估结果为一般维修的,需先办理定期检验,再进行变更登记"
);
result
.
add
(
jsonObject
);
}
}
}
return
ResponseHelper
.
buildResponse
(
Systemctl
.
dictionarieClient
.
dictValues
(
dictCode
).
getResult
());
}
...
...
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