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
41afdf0e
Commit
41afdf0e
authored
Nov 07, 2024
by
hekaiwen
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug24788 历史设备登记无需再次选择有无设备代码
equCodeCategory 1 有设备代码 2 无设备代码
parent
67bb138e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
JgUseRegistrationController.java
...module/jg/biz/controller/JgUseRegistrationController.java
+7
-1
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/JgUseRegistrationController.java
View file @
41afdf0e
...
...
@@ -166,7 +166,13 @@ public class JgUseRegistrationController extends BaseController {
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"从一码通的表中查询详情"
,
notes
=
"从一码通的表中查询详情"
)
@GetMapping
(
value
=
"/getDetailByIdx"
)
public
ResponseModel
<
Map
<
String
,
Object
>>
getDetailByIdx
(
@RequestParam
(
value
=
"record"
)
String
record
)
{
return
ResponseHelper
.
buildResponse
(
jgUseRegistrationServiceImpl
.
getDetailByIdx
(
record
));
Map
<
String
,
Object
>
detailByIdx
=
jgUseRegistrationServiceImpl
.
getDetailByIdx
(
record
);
if
(
detailByIdx
.
get
(
"equCode"
)
!=
null
&&
!
detailByIdx
.
get
(
"equCode"
).
equals
(
""
))
{
detailByIdx
.
put
(
"equCodeCategory"
,
1
);
}
else
{
detailByIdx
.
put
(
"equCodeCategory"
,
0
);
}
return
ResponseHelper
.
buildResponse
(
detailByIdx
);
}
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
...
...
何铠文
@hekaiwen
commented
·
Nov 07, 2024
Developer
equCodeCategory1 有设备代码0 无设备代码 前端组件 1有设备代码 2无设备代码
equCodeCategory1 有设备代码0 无设备代码 前端组件 1有设备代码 2无设备代码
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