|
@ -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
|
|