记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
0f61e0cd
Commit
0f61e0cd
authored
Jan 12, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~API:平台分类+样例数据;
parent
3be04187
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
GoblinStoreMgtExtraController.java
...blin/controller/manage/GoblinStoreMgtExtraController.java
+6
-7
No files found.
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/controller/manage/GoblinStoreMgtExtraController.java
View file @
0f61e0cd
...
...
@@ -43,20 +43,19 @@ public class GoblinStoreMgtExtraController {
@ApiOperationSupport
(
order
=
1
)
@ApiOperation
(
value
=
"平台商品分类"
)
@GetMapping
(
"sg_categorys"
)
public
ResponseDto
<
List
<
GoblinSelfGoodsCategoryVo
>>
selfGoodsCategoryList
(
@RequestParam
String
cateId
)
{
if
(
StringUtils
.
isBlank
(
cateId
))
return
ResponseDto
.
success
();
public
ResponseDto
<
List
<
GoblinSelfGoodsCategoryVo
>>
selfGoodsCategoryList
()
{
// TODO: 2022/1/11 redis+mongo.get
ArrayList
<
GoblinSelfGoodsCategoryVo
>
selfGoodsCategoryVo
List
=
ObjectUtil
.
getGoblinSelfGoodsCategoryVoArrayList
();
selfGoodsCategoryVo
List
.
add
(
ArrayList
<
GoblinSelfGoodsCategoryVo
>
selfGoodsCategoryVo
s
=
ObjectUtil
.
getGoblinSelfGoodsCategoryVoArrayList
();
selfGoodsCategoryVo
s
.
add
(
GoblinSelfGoodsCategoryVo
.
getNew
().
setCateId
(
"10000"
).
setName
(
"1级"
).
setSort
(
1
).
setGrade
(
"1"
).
setNeIsbn
(
"0"
).
setCatePid
(
null
)
);
selfGoodsCategoryVo
List
.
add
(
selfGoodsCategoryVo
s
.
add
(
GoblinSelfGoodsCategoryVo
.
getNew
().
setCateId
(
"10100"
).
setName
(
"2级"
).
setSort
(
1
).
setGrade
(
"2"
).
setNeIsbn
(
"0"
).
setCatePid
(
"10000"
)
);
selfGoodsCategoryVo
List
.
add
(
selfGoodsCategoryVo
s
.
add
(
GoblinSelfGoodsCategoryVo
.
getNew
().
setCateId
(
"10101"
).
setName
(
"3级"
).
setSort
(
1
).
setGrade
(
"3"
).
setNeIsbn
(
"1"
).
setCatePid
(
"10100"
)
);
return
ResponseDto
.
success
(
null
);
return
ResponseDto
.
success
(
selfGoodsCategoryVos
);
}
@ApiOperationSupport
(
order
=
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