添加首页、景区相关接口Controller
This commit is contained in:
parent
c123cb486e
commit
68c69a0a49
@ -0,0 +1,19 @@
|
||||
package com.ycwl.basic.controller.mobile;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @Author:longbinbin
|
||||
* @Date:2024/12/5 10:20
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/api/mobile/index/v1")
|
||||
@Api(tags = "首页相关接口")
|
||||
public class AppIndexController {
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -39,6 +39,7 @@ public class AppMemberController {
|
||||
@GetMapping("/isFirstObtainVideo")
|
||||
public ApiResponse isFirstTimeObtainingVideo() {
|
||||
//TODO 判断是否首次获取视频逻辑
|
||||
|
||||
return ApiResponse.success("");
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,17 @@
|
||||
package com.ycwl.basic.controller.mobile;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* @Author:longbinbin
|
||||
* @Date:2024/12/5 10:22
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/api/mobile/scenic/v1")
|
||||
@Api(tags = "景区相关接口")
|
||||
public class AppScenicController {
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user