|
@ -3,6 +3,7 @@ package com.ekexiu.console.system.dao;
|
3
|
3
|
import com.ekexiu.console.system.po.Article;
|
4
|
4
|
import com.ekexiu.console.system.pojo.ArticleInfo;
|
5
|
5
|
import org.jfw.apt.annotation.Nullable;
|
|
6
|
import org.jfw.apt.orm.annotation.dao.Batch;
|
6
|
7
|
import org.jfw.apt.orm.annotation.dao.Column;
|
7
|
8
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
8
|
9
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
|
@ -40,7 +41,8 @@ public interface ArticleDao {
|
40
|
41
|
@Where("status='1'")
|
41
|
42
|
PageQueryResult<ArticleInfo> queryByPV(Connection con, @Nullable @Like String articleTitle, @SqlColumn(value = {"(p.name is null or p.name like ?)", "(o.name is null or o.name like ?)"}, handlerClass = StringHandler.class) String name, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
|
42
|
43
|
|
|
44
|
@Batch
|
43
|
45
|
@UpdateWith
|
44
|
46
|
@From(Article.class)
|
45
|
|
int updateStatus(Connection con,String articleId,@Set String status) throws SQLException;
|
|
47
|
int[] updateStatus(Connection con,@Batch String[] articleId,@Set String status) throws SQLException;
|
46
|
48
|
}
|