1、学员信息管理成绩查看,只显示课程编号改为显示课程名称和课程编号;

2、机关教学日志日期显示格式修改
This commit is contained in:
2026-09-23 17:43:40 +08:00
parent 07ec44e9d4
commit 06c057e490
7 changed files with 34 additions and 11 deletions
@@ -520,9 +520,10 @@ public class StudentRecordsController {
@RequestParam(required = false) String kcbh,
@RequestParam(required = false) String xydbh,
@RequestParam(required = false) String xh,
@RequestParam(required = false) String xybh,
@RequestParam(required = false) Integer nd) {
return Result.success(studentRecordsService.pageCourseGrades(
new PageQuery(pageNum, pageSize), kcbh, xydbh, xh, nd));
new PageQuery(pageNum, pageSize), kcbh, xydbh, xh, xybh, nd));
}
/**
@@ -56,8 +56,8 @@ public interface StudentRecordsService {
// ========== 学员课程成绩查询 ==========
/** 分页查询学员的课程成绩列表(按课程编号、学员队编号、学号、年度筛选) */
PageResult<XYKCCJ> pageCourseGrades(PageQuery query, String kcbh, String xydbh, String xh, Integer nd);
/** 分页查询学员的课程成绩列表(按课程编号、学员队编号、学号、学员编号、年度筛选) */
PageResult<XYKCCJ> pageCourseGrades(PageQuery query, String kcbh, String xydbh, String xh, String xybh, Integer nd);
/** 分页查询学员的课程过程成绩列表(按学员编号、年度筛选,年度为空默认最新年度) */
PageResult<XYKCGCCJ> pageCourseProcessGrades(PageQuery query, String xybh, Integer nd);
@@ -379,8 +379,8 @@ public class StudentRecordsServiceImpl implements StudentRecordsService {
// ========== 学员课程成绩查询 ==========
@Override
public PageResult<XYKCCJ> pageCourseGrades(PageQuery query, String kcbh, String xydbh, String xh, Integer nd) {
String selfStudentId = null;
public PageResult<XYKCCJ> pageCourseGrades(PageQuery query, String kcbh, String xydbh, String xh, String xybh, Integer nd) {
String selfStudentId = trimToNull(xybh);
if (jwglRoleHelper.isStudent()) {
selfStudentId = jwglRoleHelper.requireStudentId();
}