|
@ -94,7 +94,7 @@ public abstract class ArticleDao {
|
94
|
94
|
public abstract List<Article> queryProPublish(Connection con, String professorId) throws SQLException;
|
95
|
95
|
|
96
|
96
|
@PageSelect
|
97
|
|
@OrderBy(" ORDER BY MODIFY_TIME DESC ")
|
|
97
|
@OrderBy(" ORDER BY PUBLISH_TIME DESC,SHARE_ID ASC")
|
98
|
98
|
@Where("STATUS = '1'")
|
99
|
99
|
public abstract PageQueryResult<Article> pageQueryProPublish(Connection con, String professorId,int pageSize,int pageNo) throws SQLException;
|
100
|
100
|
|
|
@ -113,7 +113,7 @@ public abstract class ArticleDao {
|
113
|
113
|
public abstract List<Article> queryOrgPublish(Connection con, String orgId) throws SQLException;
|
114
|
114
|
|
115
|
115
|
@PageSelect
|
116
|
|
@OrderBy(" ORDER BY MODIFY_TIME DESC ")
|
|
116
|
@OrderBy(" ORDER BY PUBLISH_TIME DESC,SHARE_ID ASC")
|
117
|
117
|
@Where("STATUS = '1'")
|
118
|
118
|
public abstract PageQueryResult<Article> pageQueryOrgPublish(Connection con, String orgId,int pageSize,int pageNo) throws SQLException;
|
119
|
119
|
|