jiapeng 6 years ago
parent
commit
73203737db
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/ekexiu/portal/service/ArticleService.java

+ 1 - 1
src/main/java/com/ekexiu/portal/service/ArticleService.java

902
	@Get
902
	@Get
903
	@Path("/pgPublishNotInPlatform")
903
	@Path("/pgPublishNotInPlatform")
904
	public PageQueryResult<Article> pgPublishNotInPlatform(@JdbcConn Connection con,String pid,@Nullable String key,@DefaultValue("10") int pageSize,@DefaultValue("1") int pageNo)throws SQLException {
904
	public PageQueryResult<Article> pgPublishNotInPlatform(@JdbcConn Connection con,String pid,@Nullable String key,@DefaultValue("10") int pageSize,@DefaultValue("1") int pageNo)throws SQLException {
905
			return this.articleDao.publishInPlatform(con,pid,key,pageSize,pageNo);
905
			return this.articleDao.publishNotInPlatform(con,pid,key,pageSize,pageNo);
906
	}
906
	}
907

907

908
	@Get
908
	@Get