Selaa lähdekoodia

新增判断非专利导入按钮显示接口

XMTT 5 vuotta sitten
vanhempi
commit
09c747b520

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

468
468
469
    }
469
    }
470
470
471
    /**
472
     *
473
     * @param con
474
     * @param id  专利id、
475
     * @param pid  用户id
476
     * @return
477
     * @throws SQLException
478
     */
479
    @Get
480
    @Path("/selectbyidandPid")
481
    public List<Researcher> selectbyidandPid(@JdbcConn Connection con,String id,String pid) throws SQLException {
482
        return this.researcherDao.selectbyidandPid(con,id,pid);
483
    }
484
471
    /**
485
    /**
472
     *
486
     *
473
     * @param con
487
     * @param con

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

43
    @From(Researcher.class)
43
    @From(Researcher.class)
44
    int deletecontact(Connection con, String id , String professorId)throws SQLException;
44
    int deletecontact(Connection con, String id , String professorId)throws SQLException;
45
45
46
    @SelectList
47
    @Nullable
48
    List<Researcher> selectbyidandPid(Connection con,String id ,String professorId) throws SQLException;
49
46
}
50
}