|
@ -182,7 +182,6 @@ public abstract class ArticleDao {
|
182
|
182
|
@Exclude("articleContent")
|
183
|
183
|
@PageSelect
|
184
|
184
|
@OrderBy(" ORDER BY PUBLISH_TIME DESC,SHARE_ID ASC")
|
185
|
|
@Where("STATUS = '1'")
|
186
|
185
|
public abstract PageQueryResult<Article> pageQueryPublish(Connection con, String ownerId,String articleType, @Nullable @In String[] status,@Nullable @GroupSqlColumn(handlerClass = StringHandler.class, value = { "OWNER_ID IN (SELECT ID FROM PROFESSOR WHERE NAME LIKE ?)",
|
187
|
186
|
"OWNER_ID IN (SELECT ID FROM ORGANIZATION WHERE NAME LIKE ? OR FOR_SHORT LIKE ?)", "ARTICLE_TITLE LIKE ?",
|
188
|
187
|
"SUBJECT LIKE ?" }, additional = 1, isAnd = false) String key,int pageSize, int pageNo) throws SQLException;
|