XMTT 5 years ago
parent
commit
488889d532

+ 12 - 0
src/main/java/com/ekexiu/portal/resResult/ResearchResultService.java

@ -1,6 +1,7 @@
1 1
package com.ekexiu.portal.resResult;
2 2
3 3
import com.ekexiu.portal.dao.ProfessorDao;
4
import com.ekexiu.portal.dao.WatchDao;
4 5
import com.ekexiu.portal.service.KeyWordService;
5 6
import org.jfw.apt.annotation.Autowrie;
6 7
import org.jfw.apt.annotation.Nullable;
@ -48,6 +49,8 @@ public class ResearchResultService {
48 49
    private ProfessorDao professorDao;
49 50
    @Autowrie
50 51
    private KeyWordService keyWordService;
52
    @Autowrie
53
    private WatchDao watchDao;
51 54
52 55
    public ResearcherDao getResearcherDao() {
53 56
        return researcherDao;
@ -89,6 +92,14 @@ public class ResearchResultService {
89 92
        this.keyWordService = keyWordService;
90 93
    }
91 94
95
    public WatchDao getWatchDao() {
96
        return watchDao;
97
    }
98
99
    public void setWatchDao(WatchDao watchDao) {
100
        this.watchDao = watchDao;
101
    }
102
92 103
    public static AtomicInteger getFnIdx() {
93 104
        return FN_IDX;
94 105
    }
@ -197,6 +208,7 @@ public class ResearchResultService {
197 208
    @Post
198 209
    @Path("/delete")
199 210
    public void delete(@JdbcConn(true) Connection con, String id) throws SQLException {
211
        watchDao.deleteWatch(con,(short)12, id);
200 212
        this.researchResultDao.updateStatus(con, id);
201 213
        this.keyWordService.refreshResearchResult(con, id, null);
202 214
    }

+ 13 - 0
src/main/java/com/ekexiu/portal/team/TeamService.java

@ -1,5 +1,6 @@
1 1
package com.ekexiu.portal.team;
2 2
3
import com.ekexiu.portal.dao.WatchDao;
3 4
import com.ekexiu.portal.service.KeyWordService;
4 5
import org.jfw.apt.annotation.Autowrie;
5 6
import org.jfw.apt.annotation.Nullable;
@ -47,6 +48,9 @@ public class TeamService {
47 48
    @Autowrie
48 49
    private KeyWordService keyWordService;
49 50
51
    @Autowrie
52
    private WatchDao watchDao;
53
50 54
    public TeamDao getTeamDao() {
51 55
        return teamDao;
52 56
    }
@ -83,6 +87,14 @@ public class TeamService {
83 87
        this.imgMaxWidth = imgMaxWidth;
84 88
    }
85 89
90
    public WatchDao getWatchDao() {
91
        return watchDao;
92
    }
93
94
    public void setWatchDao(WatchDao watchDao) {
95
        this.watchDao = watchDao;
96
    }
97
86 98
    /**
87 99
     * 上传文件
88 100
     *
@ -196,6 +208,7 @@ public class TeamService {
196 208
    @Post
197 209
    @Path("/delete")
198 210
    public void delete(@JdbcConn(true) Connection con, String id) throws SQLException {
211
        watchDao.deleteWatch(con,(short)13, id);
199 212
        teamDao.delete(con, id);
200 213
        keyWordService.refreshTeam(con,id,null);
201 214
    }