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,7 +100,6 @@ public interface TeamDao {
100 100
101 101
    @UpdateWith
102 102
    @From(TeamPro.class)
103
    @Where("secretary = '0'")
104 103
    @SetSentence("secretary='1'")
105 104
    int update(Connection con, String id,String professor) throws SQLException;
106 105
@ -112,7 +111,6 @@ public interface TeamDao {
112 111
113 112
    @UpdateWith
114 113
    @From(TeamPro.class)
115
    @Where("chief = '0'")
116 114
    @SetSentence("chief='1'")
117 115
    int updateCh(Connection con, String id,String professor) throws SQLException;
118 116