XMTT 5 years ago
parent
commit
139ec3c9aa

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

@ -72,7 +72,7 @@ public interface TeamDao {
72 72
73 73
    @PageSelect
74 74
    @OrderBy("ORDER BY CREATE_TIME DESC")
75
    PageQueryResult<Team> pageQuery(Connection con, String status, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "orgName like ?", "subject like ?", "industry like ?"}) String key, @Nullable @Like String subject, @Nullable @Like String industry, @Nullable String city, int pageSize, int pageNo) throws SQLException;
75
    PageQueryResult<Team> pageQuery(Connection con, String status, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "org_ame like ?", "subject like ?", "industry like ?"}) String key, @Nullable @Like String subject, @Nullable @Like String industry, @Nullable String city, int pageSize, int pageNo) throws SQLException;
76 76
77 77
    @PageQuery
78 78
    @OrderBy("ORDER BY SECRETARY DESC NULLS LAST, CREATE_TIME DESC")

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

@ -329,7 +329,7 @@ public class TeamService {
329 329
    public void quit(@JdbcConn(true) Connection con,String id,String professor)throws SQLException,JfwBaseException{
330 330
        Team team = teamDao.query(con, id);
331 331
        if (professor.equals(team.getSecretary())) {
332
            throw new JfwBaseException(801, "团队秘书不能退出团队");
332
            throw new JfwBaseException(801, "Team secretary can't leave the team");
333 333
        }else {
334 334
            teamDao.deletePro(con, id, professor);
335 335
            if (team.getChief().equals(professor)) {