XMTT 6 years ago
parent
commit
8b938f4965

+ 2 - 2
src/main/java/com/ekexiu/project/platform/article/ArticleDao.java

43

43

44
    @PageSelect
44
    @PageSelect
45
    @OrderBy("ORDER BY MODIFY_TIME DESC")
45
    @OrderBy("ORDER BY MODIFY_TIME DESC")
46
    @Where("ACTIVE = '1'")
46
    @Where("ACTIVED = '1'")
47
    PageQueryResult<Article> pageQuery(Connection con, @Nullable @Like String title, @Nullable String catalog, @Nullable Boolean published, int pageSize, int pageNo) throws SQLException;
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
    @SelectOne
49
    @SelectOne
59
    int update(Connection con, Article article) throws SQLException;
59
    int update(Connection con, Article article) throws SQLException;
60

60

61
    @Update
61
    @Update
62
    @Where("ACTIVE = '1' AND PUBLISHED = '0'")
62
    @Where("ACTIVED = '1' AND PUBLISHED = '0'")
63
    @Dynamic
63
    @Dynamic
64
    int draftUpdate(Connection con, Article article) throws SQLException;
64
    int draftUpdate(Connection con, Article article) throws SQLException;
65

65