|
@@ -5,6 +5,7 @@ import com.ym.mec.web.dal.page.StudentManageAttendanceQueryInfo;
|
|
import com.ym.mec.web.dal.page.StudentManageCourseQueryInfo;
|
|
import com.ym.mec.web.dal.page.StudentManageCourseQueryInfo;
|
|
import com.ym.mec.web.dal.page.StudentManageQueryInfo;
|
|
import com.ym.mec.web.dal.page.StudentManageQueryInfo;
|
|
import com.ym.mec.web.service.StudentManageService;
|
|
import com.ym.mec.web.service.StudentManageService;
|
|
|
|
+import com.ym.mec.web.service.SysUserCashAccountService;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiParam;
|
|
import io.swagger.annotations.ApiParam;
|
|
@@ -23,6 +24,9 @@ public class StudentManageController extends BaseController {
|
|
@Autowired
|
|
@Autowired
|
|
private StudentManageService studentManageService;
|
|
private StudentManageService studentManageService;
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private SysUserCashAccountService sysUserCashAccountService;
|
|
|
|
+
|
|
@ApiOperation(value = "获取学生列表")
|
|
@ApiOperation(value = "获取学生列表")
|
|
@GetMapping("/queryStudentList")
|
|
@GetMapping("/queryStudentList")
|
|
public Object queryStudentList(@RequestBody StudentManageQueryInfo queryInfo){
|
|
public Object queryStudentList(@RequestBody StudentManageQueryInfo queryInfo){
|
|
@@ -59,4 +63,10 @@ public class StudentManageController extends BaseController {
|
|
return succeed(studentManageService.findStudentVipGroups(userId));
|
|
return succeed(studentManageService.findStudentVipGroups(userId));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "获取用户默认账户基本信息")
|
|
|
|
+ @PostMapping("/getUserCashAccountBaseInfo/{userID}")
|
|
|
|
+ public Object getUserCashAccountBaseInfo(@PathVariable("userID") Long userID){
|
|
|
|
+ return succeed(studentManageService.getStudentAccountBaseInfo(userID));
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|