XMTT 5 years ago
parent
commit
7ecb3d856e

+ 5 - 0
src/main/java/com/ekexiu/portal/resResult/ResearchResultDao.java

@ -12,6 +12,7 @@ import org.jfw.apt.orm.annotation.dao.method.Where;
12 12
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
13 13
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
14 14
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
15
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
15 16
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
16 17
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
17 18
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
@ -24,6 +25,7 @@ import org.jfw.util.PageQueryResult;
24 25
25 26
import java.sql.Connection;
26 27
import java.sql.SQLException;
28
import java.util.List;
27 29
28 30
/**
29 31
 * Created by TT on 2019/07/10.
@ -70,4 +72,7 @@ public interface ResearchResultDao {
70 72
    @UpdateWith
71 73
    @SetSentence("PAGE_VIEWS = PAGE_VIEWS + 1")
72 74
    int incPageViews(Connection con, String id) throws SQLException;
75
76
    @SelectList
77
    List<ResearchResult> query(Connection con, @In String[] id) throws SQLException;
73 78
}

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

@ -236,6 +236,12 @@ public class ResearchResultService {
236 236
        this.researchResultDao.incPageViews(con, id);
237 237
    }
238 238
239
    @Get
240
    @Path("/qm")
241
    public List<ResearchResult> query(@JdbcConn Connection con, String[] id)throws SQLException {
242
        return researchResultDao.query(con, id);
243
    }
244
239 245
240 246
241 247
    /**