Bootstrap

商品上下架功能

后台上下架功能

后台实现上架,下架功能

代码演示:

dao类


    //    改变书籍上架下架状态
    public int editState(Book book) throws Exception {
   
        String sql = "update t_easyui_book set state = ? where id = ?";
        return super.executeUpdate(sql, book, new
;