|
@ -3,6 +3,7 @@ package com.ekexiu.portal.resResult;
|
3
|
3
|
import com.ekexiu.portal.dao.ProfessorDao;
|
4
|
4
|
import com.ekexiu.portal.dao.WatchDao;
|
5
|
5
|
import com.ekexiu.portal.service.KeyWordService;
|
|
6
|
import com.ekexiu.portal.team.TeamDao;
|
6
|
7
|
import org.jfw.apt.annotation.Autowrie;
|
7
|
8
|
import org.jfw.apt.annotation.DefaultValue;
|
8
|
9
|
import org.jfw.apt.annotation.Nullable;
|
|
@ -52,6 +53,8 @@ public class ResearchResultService {
|
52
|
53
|
private KeyWordService keyWordService;
|
53
|
54
|
@Autowrie
|
54
|
55
|
private WatchDao watchDao;
|
|
56
|
@Autowrie
|
|
57
|
private TeamDao teamDao;
|
55
|
58
|
|
56
|
59
|
public ResearcherDao getResearcherDao() {
|
57
|
60
|
return researcherDao;
|
|
@ -121,6 +124,14 @@ public class ResearchResultService {
|
121
|
124
|
this.imgMaxWidth = imgMaxWidth;
|
122
|
125
|
}
|
123
|
126
|
|
|
127
|
public TeamDao getTeamDao() {
|
|
128
|
return teamDao;
|
|
129
|
}
|
|
130
|
|
|
131
|
public void setTeamDao(TeamDao teamDao) {
|
|
132
|
this.teamDao = teamDao;
|
|
133
|
}
|
|
134
|
|
124
|
135
|
public String insert(Connection con, ResearchResult researchResult, String[] researchers) throws SQLException {
|
125
|
136
|
String id = StringUtil.buildUUID();
|
126
|
137
|
researchResult.setId(id);
|
|
@ -211,6 +222,7 @@ public class ResearchResultService {
|
211
|
222
|
public void delete(@JdbcConn(true) Connection con, String id) throws SQLException {
|
212
|
223
|
watchDao.deleteWatch(con,(short)12, id);
|
213
|
224
|
this.researchResultDao.updateStatus(con, id);
|
|
225
|
this.teamDao.deleteResResultbyresearchResult(con,id);
|
214
|
226
|
this.keyWordService.refreshResearchResult(con, id, null);
|
215
|
227
|
}
|
216
|
228
|
|