|
@ -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
|
}
|