package com.hxzkappboot.controller; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.hxzkappboot.pojo.TbAchor; import com.hxzkappboot.pojo.TbTag; import com.hxzkappboot.service.TbAchorService; import com.hxzkappboot.service.TbTagService; import com.hxzkappboot.util.R; import com.hxzkappboot.util.StatusCode; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *

* 前端控制器 *

* * @author wangfei * @since 2024-03-08 */ @RestController //@RequestMapping("/tb-tag") public class TbTagController { @Autowired TbTagService tbTagService; // @GetMapping("/api/wx/findTag") // public R findAll(Page page, String objectid) { // R response; // IPage ipage = tbTagService.findAll(page,objectid); // response = new R(StatusCode.Success); // response.setData(ipage); // return response; // } }