XMTT 5 years ago
parent
commit
118d8dae11
1 changed files with 0 additions and 2 deletions
  1. 0 2
      src/main/java/com/ekexiu/portal/team/TeamDao.java

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

100
100
101
    @UpdateWith
101
    @UpdateWith
102
    @From(TeamPro.class)
102
    @From(TeamPro.class)
103
    @Where("secretary = '0'")
104
    @SetSentence("secretary='1'")
103
    @SetSentence("secretary='1'")
105
    int update(Connection con, String id,String professor) throws SQLException;
104
    int update(Connection con, String id,String professor) throws SQLException;
106
105
112
111
113
    @UpdateWith
112
    @UpdateWith
114
    @From(TeamPro.class)
113
    @From(TeamPro.class)
115
    @Where("chief = '0'")
116
    @SetSentence("chief='1'")
114
    @SetSentence("chief='1'")
117
    int updateCh(Connection con, String id,String professor) throws SQLException;
115
    int updateCh(Connection con, String id,String professor) throws SQLException;
118
116