XMTT лет назад: 7
Родитель
Сommit
c0aca6a1d3

+ 3 - 1
src/main/java/com/ekexiu/console/system/dao/ArticleDao.java

@ -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
}

+ 2 - 2
src/main/java/com/ekexiu/console/system/service/ArticleService.java

@ -44,8 +44,8 @@ public class ArticleService {
44 44
45 45
    @Post
46 46
    @Path("/deleteArticle")
47
    public void deleteArticle(@JdbcConn(true) Connection con,String articleId) throws SQLException{
47
    public void deleteArticle(@JdbcConn(true) Connection con,String[] articleIds) throws SQLException{
48 48
        //修改文章状态为删除
49
        this.articleDao.updateStatus(con, articleId, "3");
49
        this.articleDao.updateStatus(con, articleIds, "3");
50 50
    }
51 51
}