|
@ -6,10 +6,12 @@ import org.jfw.apt.orm.annotation.dao.Column;
|
6
|
6
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
7
|
7
|
import org.jfw.apt.orm.annotation.dao.method.Exclude;
|
8
|
8
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
|
9
|
import org.jfw.apt.orm.annotation.dao.method.LimitColumn;
|
9
|
10
|
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
|
10
|
11
|
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
|
11
|
12
|
import org.jfw.apt.orm.annotation.dao.method.Where;
|
12
|
13
|
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
|
|
14
|
import org.jfw.apt.orm.annotation.dao.method.operator.LimitSelect;
|
13
|
15
|
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
|
14
|
16
|
import org.jfw.apt.orm.annotation.dao.method.operator.QueryVal;
|
15
|
17
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
|
|
@ -83,4 +85,10 @@ public interface ResearchResultDao {
|
83
|
85
|
|
84
|
86
|
@SelectList
|
85
|
87
|
List<ResearchResult> query(Connection con, @In String[] id) throws SQLException;
|
|
88
|
|
|
89
|
@LimitSelect
|
|
90
|
@Where("STATUS='1'")
|
|
91
|
@OrderBy(cols = { @LimitColumn(value = "createTime", asc = false),
|
|
92
|
@LimitColumn(value = "id", asc = false) }, value = "")
|
|
93
|
List<ResearchResult> indexSearch(Connection con, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"name like ?", "ID IN (SELECT ID FROM RESEARCHER WHERE NAME LIKE ?)", "SUBJECT LIKE ?", "INDUSTRY LIKE ?"}, isAnd = false) String key, String createTime, String id, int rows) throws SQLException;
|
86
|
94
|
}
|