|
@@ -253,11 +253,10 @@ public class DegreeServiceImpl extends ServiceImpl<DegreeMapper, Degree> impleme
|
|
|
* 学生考级信息查询
|
|
|
*
|
|
|
* @param id 考级ID
|
|
|
- * @param organId 用户分部ID
|
|
|
* @return DegreeWrapper.StudentDegreeInfo
|
|
|
*/
|
|
|
@Override
|
|
|
- public DegreeWrapper.StudentDegreeInfo studentDegreeInfoById(Long id, Integer organId) {
|
|
|
+ public DegreeWrapper.StudentDegreeInfo studentDegreeInfoById(Long id) {
|
|
|
|
|
|
Degree degree = getById(id);
|
|
|
// 考级信息不存在
|
|
@@ -296,7 +295,6 @@ public class DegreeServiceImpl extends ServiceImpl<DegreeMapper, Degree> impleme
|
|
|
.rows(1)
|
|
|
.status(true)
|
|
|
.tenantId(wrapper.getTenantId())
|
|
|
- .organId(organId)
|
|
|
.type(DegreeNewsTypeEnum.GRADE_EXAMINATION_BRIEF.getCode())
|
|
|
.sortedTime(true)
|
|
|
.build();
|