|
|
@ -49,6 +49,18 @@ public class AppletApiIndexController { |
|
|
List<AppletBanner> list = appletApiIndexService.getBanner(); |
|
|
List<AppletBanner> list = appletApiIndexService.getBanner(); |
|
|
return Result.OK(list); |
|
|
return Result.OK(list); |
|
|
} |
|
|
} |
|
|
|
|
|
/** |
|
|
|
|
|
* 轮播图详情 |
|
|
|
|
|
* |
|
|
|
|
|
* @return 轮播图详情 |
|
|
|
|
|
*/ |
|
|
|
|
|
@Operation(summary = "轮播图详情", description = "轮播图详情") |
|
|
|
|
|
@GetMapping(value = "/bannerDetails") |
|
|
|
|
|
@IgnoreAuth |
|
|
|
|
|
public Result<AppletBanner> bannerDetails(String id) { |
|
|
|
|
|
log.info("轮播图详情"); |
|
|
|
|
|
return Result.OK(appletApiIndexService.bannerDetails(id)); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@IgnoreAuth |
|
|
@IgnoreAuth |
|
|
@Operation(summary = "首页底部内容链接", description = "首页底部内容链接") |
|
|
@Operation(summary = "首页底部内容链接", description = "首页底部内容链接") |
|
|
|