Browse Source

初始化设计

cheer-on
主管理员 6 months ago
parent
commit
1f5047d269
3 changed files with 46 additions and 0 deletions
  1. +33
    -0
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/noticeapicontroller/IndexApiController.java
  2. +10
    -0
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/noticeapicontroller/InfoApiController.java
  3. +3
    -0
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/noticeapicontroller/OrderApiController.java

+ 33
- 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/noticeapicontroller/IndexApiController.java View File

@ -2,7 +2,9 @@ package org.jeecg.modules.api.noticeapicontroller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
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.RestController;
@ -12,7 +14,38 @@ import org.springframework.web.bind.annotation.RestController;
@Slf4j
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 "";
}
}

+ 10
- 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/noticeapicontroller/InfoApiController.java View File

@ -11,4 +11,14 @@ import org.springframework.web.bind.annotation.RestController;
@RequestMapping("/api/info")
@Slf4j
public class InfoApiController {
//获取个人信息接口
@RequestMapping("/getInfo")
public String getInfo(){
return "获取个人信息接口";
}
}

+ 3
- 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/api/noticeapicontroller/OrderApiController.java View File

@ -11,4 +11,7 @@ import org.springframework.web.bind.annotation.RestController;
@RequestMapping("/api/order")
@Slf4j
public class OrderApiController {
}

Loading…
Cancel
Save