|
@ -898,8 +898,8 @@ public class ArticleService {
|
898
|
898
|
|
899
|
899
|
@Path("/find")
|
900
|
900
|
@Get
|
901
|
|
public PageQueryResult<Article> find(@JdbcConn Connection con,@DefaultValue("0") int col,@DefaultValue("20") int pageSize,@DefaultValue("1") int pageNo) throws SQLException{
|
902
|
|
return this.articleDao.queryFind(con,col>0?col:null, pageSize, pageNo);
|
|
901
|
public PageQueryResult<Article> find(@JdbcConn Connection con,@DefaultValue("0") int col,@Nullable String[] exclude,@DefaultValue("20") int pageSize,@DefaultValue("1") int pageNo) throws SQLException{
|
|
902
|
return this.articleDao.queryFind(con,col>0?col:null,exclude, pageSize, pageNo);
|
903
|
903
|
}
|
904
|
904
|
@Path("/lastestPublished")
|
905
|
905
|
@Get
|