This commit is contained in:
苏竹红
2024-03-22 14:25:01 +08:00
parent 2f005d64cc
commit b2759b8f67
6 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("news")
@RequestMapping("pc/news")
@Api(tags = "PC动态")
@Slf4j
public class ContentController {

View File

@@ -24,7 +24,7 @@ import java.util.List;
*/
@Api(tags = "标签管理")
@RestController
@RequestMapping("/label")
@RequestMapping("pc/label")
public class LabelController {
@Autowired

View File

@@ -26,7 +26,7 @@ import java.util.List;
*/
@Api(tags = {"标签组管理"})
@RestController
@RequestMapping({"/labelGroup"})
@RequestMapping({"pc/labelGroup"})
public class LabelGroupController {
@Autowired
private LabelGroupService labelGroupService;

View File

@@ -28,7 +28,7 @@ import javax.annotation.Resource;
*/
@Api(tags = "线索审核")
@RestController
@RequestMapping({"/audit"})
@RequestMapping({"pc/audit"})
public class LineAuditController {
@Resource

View File

@@ -23,7 +23,7 @@ import java.util.List;
* @Version 1.0
*/
@RestController
@RequestMapping("/openArea")
@RequestMapping("pc/openArea")
@Api(tags = "PC开放城市")
public class OpenAreaController {

View File

@@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/video")
@RequestMapping("pc/video")
@Api(tags = "腾讯音视频接口")
@Slf4j
public class VideoController {