记得上下班打卡 | 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
d06b5b8c
Commit
d06b5b8c
authored
Jan 14, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~API:店铺商品分类管理:del.todo;
parent
4d7c51a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
GoblinStoreMgtCategoryController.java
...n/controller/manage/GoblinStoreMgtCategoryController.java
+1
-12
No files found.
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/controller/manage/GoblinStoreMgtCategoryController.java
View file @
d06b5b8c
...
@@ -46,18 +46,7 @@ public class GoblinStoreMgtCategoryController {
...
@@ -46,18 +46,7 @@ public class GoblinStoreMgtCategoryController {
})
})
@GetMapping
(
"list"
)
@GetMapping
(
"list"
)
public
ResponseDto
<
List
<
GoblinStoreGoodsCategoryVo
>>
list
(
@NotBlank
(
message
=
"店铺ID不能为空"
)
@RequestParam
String
storeId
)
{
public
ResponseDto
<
List
<
GoblinStoreGoodsCategoryVo
>>
list
(
@NotBlank
(
message
=
"店铺ID不能为空"
)
@RequestParam
String
storeId
)
{
List
<
GoblinStoreGoodsCategoryVo
>
storeGoodsCategoryVos
=
goblinStoreMgtCategoryService
.
list
(
storeId
);
return
ResponseDto
.
success
(
goblinStoreMgtCategoryService
.
list
(
storeId
));
storeGoodsCategoryVos
.
clear
();
// TODO: 2022/1/12 zhanggb del
storeGoodsCategoryVos
.
add
(
GoblinStoreGoodsCategoryVo
.
getNew
().
setCateId
(
"10000"
).
setName
(
"1级"
).
setSort
(
1
).
setGrade
(
"1"
).
setNeIsbn
(
"0"
)
);
storeGoodsCategoryVos
.
add
(
GoblinStoreGoodsCategoryVo
.
getNew
().
setCateId
(
"10100"
).
setName
(
"2级"
).
setSort
(
1
).
setGrade
(
"2"
).
setNeIsbn
(
"0"
).
setCatePid
(
"10000"
)
);
storeGoodsCategoryVos
.
add
(
GoblinStoreGoodsCategoryVo
.
getNew
().
setCateId
(
"10101"
).
setName
(
"3级"
).
setSort
(
1
).
setGrade
(
"3"
).
setNeIsbn
(
"1"
).
setCatePid
(
"10100"
)
);
return
ResponseDto
.
success
(
storeGoodsCategoryVos
);
}
}
@ApiOperationSupport
(
order
=
2
)
@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