XMTT 7 年之前
父節點
當前提交
f2923fb83a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/ekexiu/portal/dao/PpatentDao.java

+ 1 - 1
src/main/java/com/ekexiu/portal/dao/PpatentDao.java

@ -95,7 +95,7 @@ public abstract class PpatentDao {
95 95
	@Exclude("summary")
96 96
	@LimitSelect
97 97
	@OrderBy(cols = {@LimitColumn(value = "sortNum", handlerClass = LongHandler.class, asc = false), @LimitColumn(value = "createTime", asc = false), @LimitColumn(value = "id", asc = false)}, value = "")
98
	public abstract List<Ppatent> indexSearch(Connection con, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"REQ_PERSON LIKE ?", "KEYWORDS LIKE ?", "NAME LIKE ?", "AUTHORS LIKE ?", "CODE LIKE ?"}) String key, long sortNum, String createTime, String id, int rows) throws SQLException;
98
	public abstract List<Ppatent> indexSearch(Connection con, @Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = {"REQ_PERSON LIKE ?", "KEYWORDS LIKE ?", "NAME LIKE ?", "AUTHORS LIKE ?", "CODE LIKE ?"},isAnd = false) String key, long sortNum, String createTime, String id, int rows) throws SQLException;
99 99

100 100
	@SelectOne
101 101
	@Nullable