|
@ -31,10 +31,10 @@ public interface PpatentDao {
|
31
|
31
|
|
32
|
32
|
@PageQuery
|
33
|
33
|
@OrderBy(" ORDER BY create_time DESC NULLS LAST")
|
34
|
|
PageQueryResult<Ppatent> queryByTime(Connection con, @Nullable @Like String name, @Nullable @Like String reqPerson, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
|
|
34
|
PageQueryResult<Ppatent> queryByTime(Connection con, @Nullable @Like String name, @Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
|
35
|
35
|
|
36
|
36
|
@PageQuery
|
37
|
37
|
@OrderBy(" ORDER BY page_views DESC NULLS LAST")
|
38
|
|
PageQueryResult<Ppatent> queryByPV(Connection con, @Nullable @Like String name,@Nullable @Like String reqPerson, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
|
|
38
|
PageQueryResult<Ppatent> queryByPV(Connection con, @Nullable @Like String name,@Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
|
39
|
39
|
|
40
|
40
|
}
|