XMTT 6 lat temu
rodzic
commit
308f3f18d1

+ 1 - 1
src/main/java/com/ekexiu/project/platform/organization/OrgDao.java

@ -24,7 +24,7 @@ public interface OrgDao {
24 24
    int setlevel(Connection con, String id, @Set Integer level) throws SQLException;
25 25
26 26
    @SelectList
27
    @OrderBy("ORDER BY LEVEL ASC NULL LAST")
27
    @OrderBy("ORDER BY LEVEL ASC NULLS LAST")
28 28
    List<Organization> queryList(Connection con) throws SQLException;
29 29
30 30
    @SelectOne

+ 1 - 1
src/main/java/com/ekexiu/project/platform/professor/ProfessorDao.java

@ -24,7 +24,7 @@ public interface ProfessorDao {
24 24
    int setlevel(Connection con, String id, @Set Integer level) throws SQLException;
25 25
26 26
    @SelectList
27
    @OrderBy("ORDER BY LEVEL ASC NULL LAST")
27
    @OrderBy("ORDER BY LEVEL ASC NULLS LAST")
28 28
    List<Professor> queryList(Connection con) throws SQLException;
29 29
30 30
    @SelectOne