XMTT 5 years ago
parent
commit
1a8751d617

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

@ -56,7 +56,7 @@ public interface TeamDao {
56 56
57 57
    @UpdateWith
58 58
    @From(Team.class)
59
    int updateChief(Connection con, @Set String chief, String id) throws SQLException;
59
    int updateChief(Connection con,@Nullable @Set String chief, String id) throws SQLException;
60 60
61 61
    @UpdateWith
62 62
    @From(Team.class)

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

@ -299,10 +299,12 @@ public class TeamService {
299 299
300 300
    @Post
301 301
    @Path("/chief")
302
    public void changeChief(@JdbcConn(true)Connection con,String id,String newPro)throws SQLException {
303
        teamDao.updateChief(con, newPro, id);
302
    public void changeChief(@JdbcConn(true)Connection con,String id,@Nullable String newPro)throws SQLException {
304 303
        teamDao.updateCh(con, id);
305
        teamDao.updateCh(con, id, newPro);
304
        teamDao.updateChief(con, newPro, id);
305
        if (newPro != null) {
306
            teamDao.updateCh(con, id, newPro);
307
        }
306 308
    }
307 309
308 310
    @Get