|
@@ -49,7 +49,6 @@ public class TagCategoryController {
|
|
|
@RequestParam(required = false) String label,
|
|
|
@RequestParam(required = false) String labelType,
|
|
|
@RequestParam(required = false) String labelButtonType
|
|
|
-
|
|
|
) {
|
|
|
log.info("TagCategoryController.getTagList");
|
|
|
IPage<TagCategory> storeCouponList = tagCategoryService.getTagList(pageNum, pageSize,label,labelType,labelButtonType);
|
|
@@ -90,7 +89,7 @@ public class TagCategoryController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取经营类型标签信息")
|
|
|
- @ApiOperationSupport(order = 2)
|
|
|
+ @ApiOperationSupport(order = 6)
|
|
|
@GetMapping("/getBusinessRelationTagList")
|
|
|
public R<List<TagCategoryVo>> getBusinessRelationTagList(@RequestParam(required = false) Integer businessSection) {
|
|
|
log.info("TagCategoryController.getBusinessRelationTagList");
|
|
@@ -100,7 +99,7 @@ public class TagCategoryController {
|
|
|
|
|
|
|
|
|
@ApiOperation("获取标签经营类型关系")
|
|
|
- @ApiOperationSupport(order = 6)
|
|
|
+ @ApiOperationSupport(order = 7)
|
|
|
@GetMapping("/getTagBusinessRelationList")
|
|
|
public R<IPage<TagBusinessRelation>> getTagBusinessRelationList(@RequestParam(defaultValue = "1") int page,
|
|
|
@RequestParam(defaultValue = "10") int size, @RequestParam(required = false) int businessSection,
|
|
@@ -112,7 +111,7 @@ public class TagCategoryController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("删除标签经营类型关系")
|
|
|
- @ApiOperationSupport(order = 7)
|
|
|
+ @ApiOperationSupport(order = 8)
|
|
|
@PostMapping("/deleteTagBusinessRelation")
|
|
|
public R<Boolean> deleteTagBusinessRelation(@RequestBody TagBusinessRelation tagBusinessRelation) {
|
|
|
log.info("TagCategoryController.deleteTagBusinessRelation");
|
|
@@ -124,7 +123,7 @@ public class TagCategoryController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("创建/更新店铺标签关系")
|
|
|
- @ApiOperationSupport(order = 8)
|
|
|
+ @ApiOperationSupport(order = 9)
|
|
|
@PostMapping("/createOrUpdateTagStoreRelation")
|
|
|
public R<TagStoreRelation> createOrUpdateTagStoreRelation(@RequestBody TagStoreRelation tagStoreRelation) {
|
|
|
log.info("TagCategoryController.createOrUpdateTagStoreRelation?tagStoreRelation={}", tagStoreRelation);
|
|
@@ -133,7 +132,7 @@ public class TagCategoryController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("获取标签经营类型关系")
|
|
|
- @ApiOperationSupport(order = 9)
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
|
@GetMapping("/getTagStoreRelationByStoreId")
|
|
|
public R<TagStoreRelation> getTagStoreRelationByStoreId( @RequestParam(required = true) Integer storeId) {
|
|
|
log.info("TagCategoryController.getTagStoreRelationByStoreId={}", storeId);
|