XMTT 6 vuotta sitten
vanhempi
commit
308f3f18d1

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

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

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

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