jiapeng vor 6 Jahren
Ursprung
Commit
73203737db
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/main/java/com/ekexiu/portal/service/ArticleService.java

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

@ -902,7 +902,7 @@ public class ArticleService {
902 902
	@Get
903 903
	@Path("/pgPublishNotInPlatform")
904 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 908
	@Get