|
|
@@ -11,6 +11,7 @@ import com.xjrsoft.common.page.PageOutput;
|
|
|
import com.xjrsoft.module.student.dto.BaseStudentInfoPageDto;
|
|
|
import com.xjrsoft.module.student.dto.PbVXssfdetailExcelDto;
|
|
|
import com.xjrsoft.module.student.dto.PbVXssfdetailPageDto;
|
|
|
+import com.xjrsoft.module.student.dto.PersonalInfoDto;
|
|
|
import com.xjrsoft.module.student.service.IPbVXssfdetailService;
|
|
|
import com.xjrsoft.module.student.service.IStudentManagerService;
|
|
|
import com.xjrsoft.module.student.vo.PbVXssfdetailExcelVo;
|
|
|
@@ -46,8 +47,8 @@ public class ConsumptionController {
|
|
|
@GetMapping(value = "/personal-info")
|
|
|
@ApiOperation(value="学生个人信息")
|
|
|
@SaCheckPermission("consumption:detail")
|
|
|
- public RT<StudentPersonalInfoVo> personalInfo(@Valid BaseStudentInfoPageDto dto){
|
|
|
- StudentPersonalInfoVo info = studentManagerService.getPersonalInfo(StpUtil.getLoginIdAsLong());
|
|
|
+ public RT<StudentPersonalInfoVo> personalInfo(@Valid PersonalInfoDto dto){
|
|
|
+ StudentPersonalInfoVo info = studentManagerService.getPersonalInfo(dto.getUserId());
|
|
|
return RT.ok(info);
|
|
|
}
|
|
|
|