Browse Source

新建根据研究者id查询 成果研究人表

XMTT 5 years ago
parent
commit
166a54a044

+ 13 - 1
src/main/java/com/ekexiu/portal/resResult/ResearchResultService.java

@ -230,6 +230,7 @@ public class ResearchResultService {
230 230
        watchDao.deleteWatch(con,(short)12, id);
231 231
        this.researchResultDao.updateStatus(con, id);
232 232
        this.teamDao.deleteResResultbyresearchResult(con,id);
233
        this.researcherDao.delete(con,id);
233 234
        this.keyWordService.refreshResearchResult(con, id, null);
234 235
    }
235 236
@ -480,6 +481,17 @@ public class ResearchResultService {
480 481
        this.researcherDao.deletecontact(con,id,uid);
481 482
    }
482 483
483
484
    /**
485
     *
486
     * @param con
487
     * @param pid 研究者id
488
     * @return
489
     * @throws SQLException
490
     */
491
    @Get
492
    @Path("/researcherbyprofessorId")
493
    public List<Researcher> queryResearchersbyprofessorId(@JdbcConn Connection con, String pid) throws SQLException {
494
        return this.researcherDao.querybyprofessorId(con,pid);
495
    }
484 496
485 497
}

+ 3 - 0
src/main/java/com/ekexiu/portal/resResult/ResearcherDao.java

@ -35,6 +35,9 @@ public interface ResearcherDao {
35 35
    @Where("STATUS = '0'")
36 36
    List<Researcher> query(Connection con, String id) throws SQLException;
37 37
38
    @SelectList
39
    @Nullable
40
    List<Researcher> querybyprofessorId(Connection con, String professorId) throws SQLException;
38 41
39 42
    @DeleteWith
40 43
    @From(Researcher.class)