|
@ -210,6 +210,11 @@ public class ProfessorService {
|
210
|
210
|
this.professorDao.updateIndustry(con, id, industry);
|
211
|
211
|
}
|
212
|
212
|
@Post
|
|
213
|
@Path("/address")
|
|
214
|
public void updateAddress(@JdbcConn(true) Connection con, String id, String address) throws SQLException{
|
|
215
|
this.professorDao.updateAddress(con, id, address);
|
|
216
|
}
|
|
217
|
@Post
|
213
|
218
|
@Path("/descp")
|
214
|
219
|
public void updateDescp(@JdbcConn(true) Connection con, String id, String descp) throws SQLException{
|
215
|
220
|
this.professorDao.updateDescp(con, id, descp);
|