删除 不用的启动页
parent
95b75b9d74
commit
1fe188cff3
@ -1,32 +0,0 @@
|
||||
package com.flossom.miniProgram.controller;
|
||||
|
||||
import com.flossom.common.core.web.controller.BaseController;
|
||||
import com.flossom.common.core.web.domain.AjaxResult;
|
||||
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;
|
||||
|
||||
/**
|
||||
* 首页视频、欢迎页、登录页
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/welcome")
|
||||
public class WelcomeController extends BaseController {
|
||||
|
||||
|
||||
/**
|
||||
* 获取首页视频
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/obtain/firstPageVideo")
|
||||
public AjaxResult obtainFirstPageVideo() {
|
||||
return AjaxResult.success();
|
||||
}
|
||||
|
||||
@GetMapping("/obtain/firstPageIntroduction")
|
||||
public AjaxResult obtainFirstPageIntroduction() {
|
||||
return AjaxResult.success();
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue