Update MemberAttentionController.java

This commit is contained in:
macro
2022-08-05 20:38:21 +08:00
parent edf11722e8
commit 1307a6a681

View File

@@ -6,6 +6,7 @@ import com.macro.mall.portal.domain.MemberBrandAttention;
import com.macro.mall.portal.service.MemberAttentionService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.stereotype.Controller;
@@ -16,7 +17,8 @@ import org.springframework.web.bind.annotation.*;
* Created by macro on 2018/8/2.
*/
@Controller
@Api(tags = "MemberAttentionController", description = "会员关注品牌管理")
@Api(tags = "MemberAttentionController")
@Tag(name = "MemberAttentionController",description = "会员关注品牌管理")
@RequestMapping("/member/attention")
public class MemberAttentionController {
@Autowired