|
@ -906,14 +906,14 @@ public class ArticleService {
|
906
|
906
|
}
|
907
|
907
|
|
908
|
908
|
@Get
|
909
|
|
@Path("/pqPublish")
|
|
909
|
@Path("/pageQueryPublish")
|
910
|
910
|
public PageQueryResult<Article> pageQueryPublish(@JdbcConn Connection con, String ownerId,String articleType,@Nullable String key, @DefaultValue("10") int pageSize,
|
911
|
911
|
@DefaultValue("1") int pageNo) throws SQLException {
|
912
|
912
|
return this.articleDao.pageQueryPublish(con, ownerId,articleType,key, pageSize, pageNo);
|
913
|
913
|
}
|
914
|
914
|
|
915
|
915
|
@Get
|
916
|
|
@Path("/pqPublish")
|
|
916
|
@Path("/qaPublish")
|
917
|
917
|
public List<Article> queryPublish(@JdbcConn Connection con, String ownerId, @DefaultValue("\"z\"")String publishTime, @DefaultValue("\"z\"") String articleId,String articleType,@Nullable String key, int rows) throws SQLException {
|
918
|
918
|
return this.articleDao.queryPublish(con, ownerId, publishTime, articleId, articleType,key, rows);
|
919
|
919
|
}
|