XMTT 5 years ago
parent
commit
3ec39a4d16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/ekexiu/portal/team/TeamDao.java

+ 1 - 1
src/main/java/com/ekexiu/portal/team/TeamDao.java

@ -82,7 +82,7 @@ public interface TeamDao {
82 82
    int insert(Connection con, TeamPro teamPro) throws SQLException;
83 83
84 84
    @PageSelect
85
    @OrderBy("order by id")
85
    @OrderBy("ORDER BY SECRETARY DESC NULLS LAST,CHIEF DESC NULLS LAST,ID DESC")
86 86
    PageQueryResult<TeamPro> queryPro(Connection con, String id, int pageSize, int pageNo) throws SQLException;
87 87
88 88
    @DeleteWith