|
@ -1,8 +1,19 @@
|
1
|
1
|
package com.ekexiu.portal.team;
|
2
|
2
|
|
|
3
|
import com.ekexiu.portal.dao.PpaperDao;
|
|
4
|
import com.ekexiu.portal.dao.PpatentDao;
|
|
5
|
import com.ekexiu.portal.dao.ProfessorDao;
|
3
|
6
|
import com.ekexiu.portal.dao.WatchDao;
|
|
7
|
import com.ekexiu.portal.po.Ppaper;
|
|
8
|
import com.ekexiu.portal.po.Ppatent;
|
|
9
|
import com.ekexiu.portal.pojo.SortedPro;
|
|
10
|
import com.ekexiu.portal.resResult.ResearchResult;
|
|
11
|
import com.ekexiu.portal.resResult.ResearchResultDao;
|
|
12
|
import com.ekexiu.portal.service.ImageService;
|
4
|
13
|
import com.ekexiu.portal.service.KeyWordService;
|
|
14
|
import com.ekexiu.portal.service.ProfessorService;
|
5
|
15
|
import org.jfw.apt.annotation.Autowrie;
|
|
16
|
import org.jfw.apt.annotation.DefaultValue;
|
6
|
17
|
import org.jfw.apt.annotation.Nullable;
|
7
|
18
|
import org.jfw.apt.web.annotation.Path;
|
8
|
19
|
import org.jfw.apt.web.annotation.operate.Get;
|
|
@ -51,6 +62,20 @@ public class TeamService {
|
51
|
62
|
@Autowrie
|
52
|
63
|
private WatchDao watchDao;
|
53
|
64
|
|
|
65
|
@Autowrie
|
|
66
|
private ProfessorDao professorDao;
|
|
67
|
|
|
68
|
@Autowrie
|
|
69
|
private ImageService imageService;
|
|
70
|
|
|
71
|
@Autowrie
|
|
72
|
private ResearchResultDao researchResultDao;
|
|
73
|
|
|
74
|
@Autowrie
|
|
75
|
private PpatentDao ppatentDao;
|
|
76
|
|
|
77
|
@Autowrie
|
|
78
|
private PpaperDao ppaperDao;
|
54
|
79
|
public TeamDao getTeamDao() {
|
55
|
80
|
return teamDao;
|
56
|
81
|
}
|
|
@ -95,6 +120,46 @@ public class TeamService {
|
95
|
120
|
this.watchDao = watchDao;
|
96
|
121
|
}
|
97
|
122
|
|
|
123
|
public ProfessorDao getProfessorDao() {
|
|
124
|
return professorDao;
|
|
125
|
}
|
|
126
|
|
|
127
|
public void setProfessorDao(ProfessorDao professorDao) {
|
|
128
|
this.professorDao = professorDao;
|
|
129
|
}
|
|
130
|
|
|
131
|
public ImageService getImageService() {
|
|
132
|
return imageService;
|
|
133
|
}
|
|
134
|
|
|
135
|
public void setImageService(ImageService imageService) {
|
|
136
|
this.imageService = imageService;
|
|
137
|
}
|
|
138
|
|
|
139
|
public ResearchResultDao getResearchResultDao() {
|
|
140
|
return researchResultDao;
|
|
141
|
}
|
|
142
|
|
|
143
|
public void setResearchResultDao(ResearchResultDao researchResultDao) {
|
|
144
|
this.researchResultDao = researchResultDao;
|
|
145
|
}
|
|
146
|
|
|
147
|
public PpatentDao getPpatentDao() {
|
|
148
|
return ppatentDao;
|
|
149
|
}
|
|
150
|
|
|
151
|
public void setPpatentDao(PpatentDao ppatentDao) {
|
|
152
|
this.ppatentDao = ppatentDao;
|
|
153
|
}
|
|
154
|
|
|
155
|
public PpaperDao getPpaperDao() {
|
|
156
|
return ppaperDao;
|
|
157
|
}
|
|
158
|
|
|
159
|
public void setPpaperDao(PpaperDao ppaperDao) {
|
|
160
|
this.ppaperDao = ppaperDao;
|
|
161
|
}
|
|
162
|
|
98
|
163
|
/**
|
99
|
164
|
* 上传文件
|
100
|
165
|
*
|
|
@ -219,24 +284,69 @@ public class TeamService {
|
219
|
284
|
return teamDao.queryPro(con, id, pageSize, pageNo);
|
220
|
285
|
}
|
221
|
286
|
|
|
287
|
@Get
|
|
288
|
@Path("/pro/search")
|
|
289
|
public List<SortedPro> proSearch(@JdbcConn(false) Connection con, @Nullable String key,String team, @Nullable Integer authType, @DefaultValue("99999") int sortFirst, @DefaultValue("\"Z\"")String id, @DefaultValue("0")double starLevel, @DefaultValue("10000000") int rows)
|
|
290
|
throws SQLException {
|
|
291
|
if (key != null) {
|
|
292
|
key = "%" + key + "%";
|
|
293
|
}
|
|
294
|
String sortDesc = "000000"+ sortFirst;
|
|
295
|
String a = "0000" + (int)(starLevel*100);
|
|
296
|
sortDesc = sortDesc.substring(sortDesc.length()-5)+a.substring(a.length()-4)+id;
|
|
297
|
List<SortedPro> queryResult = this.professorDao.teamSearch(con,sortDesc, key,team, authType,rows );
|
|
298
|
if (!queryResult.isEmpty()) {
|
|
299
|
for (SortedPro editProfessor : queryResult) {
|
|
300
|
editProfessor.setHasHeadImage(this.imageService.hasProfessorImage(editProfessor.getId()));
|
|
301
|
}
|
|
302
|
ProfessorService.hiddenPrivacyInfo(queryResult);
|
|
303
|
}
|
|
304
|
return queryResult;
|
|
305
|
}
|
|
306
|
|
222
|
307
|
@Get
|
223
|
308
|
@Path("/patent")
|
224
|
309
|
public PageQueryResult<TeamPatent> queryPatent(@JdbcConn Connection con,String id,int pageSize,int pageNo)throws SQLException {
|
225
|
310
|
return teamDao.queryPatent(con, id, pageSize, pageNo);
|
226
|
311
|
}
|
227
|
312
|
|
|
313
|
@Get
|
|
314
|
@Path("/patent/search")
|
|
315
|
public List<Ppatent> patentSearch(@JdbcConn Connection con, @Nullable String key, String team,@DefaultValue("Long.MAX_VALUE") long sortNum, @DefaultValue("\"9\"") String createTime, @DefaultValue("\"G\"")String id, @DefaultValue("10000000") int rows)throws SQLException {
|
|
316
|
if (key != null) {
|
|
317
|
key = "%" + key + "%";
|
|
318
|
}
|
|
319
|
return this.ppatentDao.searchForTeam(con, key,team, sortNum, createTime,id, rows);
|
|
320
|
}
|
|
321
|
|
228
|
322
|
@Get
|
229
|
323
|
@Path("/paper")
|
230
|
324
|
public PageQueryResult<TeamPaper> queryPaper(@JdbcConn Connection con,String id,int pageSize,int pageNo)throws SQLException {
|
231
|
325
|
return teamDao.queryPaper(con, id, pageSize, pageNo);
|
232
|
326
|
}
|
233
|
327
|
|
|
328
|
@Get
|
|
329
|
@Path("/paper/search")
|
|
330
|
public List<Ppaper> paperSearch(@JdbcConn Connection con, @Nullable String key,String team, @DefaultValue("Long.MAX_VALUE") long sortNum, @DefaultValue("\"9\"") String createTime, @DefaultValue("\"G\"")String id, @DefaultValue("10000000") int rows)throws SQLException {
|
|
331
|
if (key != null) {
|
|
332
|
key = "%" + key + "%";
|
|
333
|
}
|
|
334
|
return this.ppaperDao.searchForTeam(con, key,team, sortNum, createTime, id, rows);
|
|
335
|
|
|
336
|
}
|
|
337
|
|
234
|
338
|
@Get
|
235
|
339
|
@Path("/resResult")
|
236
|
340
|
public PageQueryResult<TeamResResult> queryResResult(@JdbcConn Connection con,String id,int pageSize,int pageNo)throws SQLException {
|
237
|
341
|
return teamDao.queryResResult(con, id, pageSize, pageNo);
|
238
|
342
|
}
|
239
|
343
|
|
|
344
|
@Get
|
|
345
|
@Path("/resResult/search")
|
|
346
|
public PageQueryResult<ResearchResult> resResultSearch(@JdbcConn Connection con, @Nullable String[] status,String team, @Nullable String key, int pageSize, int pageNo) throws SQLException {
|
|
347
|
return researchResultDao.searchForTeam(con, status, key == null ? null : "%" + key + "%",team, pageSize, pageNo);
|
|
348
|
}
|
|
349
|
|
240
|
350
|
@Post
|
241
|
351
|
@Path("/deletePro")
|
242
|
352
|
public void deletePro(@JdbcConn(true) Connection con,String id,String professor)throws SQLException {
|