1、学员信息管理成绩查看,只显示课程编号改为显示课程名称和课程编号;
2、机关教学日志日期显示格式修改
This commit is contained in:
+2
-2
@@ -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);
|
||||
|
||||
+2
-2
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user