|
@ -2,7 +2,9 @@ package org.jeecg.modules.api.noticeapicontroller; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.Api; |
|
|
import io.swagger.annotations.Api; |
|
|
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
@ -12,7 +14,38 @@ import org.springframework.web.bind.annotation.RestController; |
|
|
@Slf4j |
|
|
@Slf4j |
|
|
public class IndexApiController { |
|
|
public class IndexApiController { |
|
|
|
|
|
|
|
|
|
|
|
//获取banner列表 |
|
|
|
|
|
@ApiOperation(value="小程序-获取banner列表", notes="小程序-获取banner列表") |
|
|
|
|
|
@GetMapping("/getBanner") |
|
|
|
|
|
public String getBanner() |
|
|
|
|
|
{ |
|
|
|
|
|
return ""; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//获取认证演员 |
|
|
|
|
|
@ApiOperation(value="小程序-获取认证演员", notes="小程序-获取认证演员") |
|
|
|
|
|
@GetMapping("/getActor") |
|
|
|
|
|
public String getActor() |
|
|
|
|
|
{ |
|
|
|
|
|
return ""; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获取动态列表带分页 |
|
|
|
|
|
@ApiOperation(value="小程序-获取动态列表带分页", notes="小程序-获取动态列表带分页") |
|
|
|
|
|
@GetMapping("/getDynamicPage") |
|
|
|
|
|
public String getDynamicPage() |
|
|
|
|
|
{ |
|
|
|
|
|
return ""; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|