This commit is contained in:
2026-03-25 15:31:03 +08:00
parent e67d520c44
commit 5d2cec7b32
@@ -91,9 +91,8 @@ public class TeacherCongressDelegateServiceImpl extends BaseServiceImpl<Teacher_
if (!AuthUtil.hasRole(RoleConstant.SYSADMIN.name()) && !AuthUtil.hasRole(RoleConstant.SCHOOL_UNION_TC_ADMIN.name())) {
cnd.and("t1.delegationId", "in", proposalCommonService.getSelfManageDelegationIds());
}
cnd.asc("t1.userName");
sql.setCondition(cnd);
List<TeacherCongressDelegateExcelVO> list = listVO(sql, TeacherCongressDelegateExcelVO.class);
Comparator<TeacherCongressDelegateExcelVO> comparator = Comparator.comparing(map -> getStrokeCount(String.valueOf(map.getUserName().charAt(0))));