|
@ -43,7 +43,7 @@ public interface ArticleDao {
|
43
|
43
|
|
44
|
44
|
@PageSelect
|
45
|
45
|
@OrderBy("ORDER BY MODIFY_TIME DESC")
|
46
|
|
@Where("ACTIVE = '1'")
|
|
46
|
@Where("ACTIVED = '1'")
|
47
|
47
|
PageQueryResult<Article> pageQuery(Connection con, @Nullable @Like String title, @Nullable String catalog, @Nullable Boolean published, int pageSize, int pageNo) throws SQLException;
|
48
|
48
|
|
49
|
49
|
@SelectOne
|
|
@ -59,7 +59,7 @@ public interface ArticleDao {
|
59
|
59
|
int update(Connection con, Article article) throws SQLException;
|
60
|
60
|
|
61
|
61
|
@Update
|
62
|
|
@Where("ACTIVE = '1' AND PUBLISHED = '0'")
|
|
62
|
@Where("ACTIVED = '1' AND PUBLISHED = '0'")
|
63
|
63
|
@Dynamic
|
64
|
64
|
int draftUpdate(Connection con, Article article) throws SQLException;
|
65
|
65
|
|