博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
批量更新的两种方法
阅读量:5890 次
发布时间:2019-06-19

本文共 1943 字,大约阅读时间需要 6 分钟。

/**     * 批量删除     *     * @description     */    @RequestMapping(value = "/deleteIdsLogicGoods")    public void deleteIdsLogic(HttpServletRequest request,            HttpServletResponse response) {        String ids = null;        if (request.getParameter("ids") != null) {            ids = request.getParameter("ids").trim();            String[] idArr = ids.split(",");            for (int i = 0; i < idArr.length; i++) {                WeixinActivity bean = new WeixinActivity();                bean.setId(Long.parseLong(idArr[i]));                bean.setIsDelete("Y");                weixinActivityService.updateWeixinActivityGoods(bean);            }        }    }
//批量删除         @RequestMapping(value = "/batchDeleteLinks", method=RequestMethod.POST)         @ResponseBody         public String  batchDeleteLinks(HttpServletRequest request) {              Integer userId = (Integer)request.getSession().getAttribute("userId");              String str = "no";              String idStr =  request.getParameter("idStr").toString();              String [] tempids =idStr.split(",");              List
list = new ArrayList
(); for (int i =0; i
msg = pageIndexLinksService.batchUpdatePageIndexLinks(list); if(msg.getStatus().getCode().equals("0")){ str="ok"; } return str; } public ServiceMessage
batchUpdatePageIndexLinks(List
list) { try{ if(list==null || list.size()==0){ return super.returnParamsError("batchUpdatePageIndexLinks(list=null)"); } for(PageIndexLinks pageIndexLinks:list){ pageIndexLinksMapper.update(pageIndexLinks); } }catch(Exception e){ logger.error(e.getMessage()); return super.returnException(); } return super. returnCorrectResult("ok"); }

 

转载地址:http://ghysx.baihongyu.com/

你可能感兴趣的文章
AVL树之删除算法
查看>>
startActivityForResult用法
查看>>
写给未来的你——老婆
查看>>
autofs自动挂载
查看>>
如何基于国产CPU的云平台构建容器管理平台?(上篇)
查看>>
AWS吹走了私有云天空中最后一片乌云
查看>>
C语言学习笔记--选择排序,插入排序
查看>>
异常及File类概述
查看>>
python字符编码
查看>>
import android.support.v7.app.ActionBarActivity; 报
查看>>
ImageView显示超大图片
查看>>
bash的工作特性之命令执行返回值和命令展开的内容及练习示例
查看>>
linux 命令 —— gzip
查看>>
IDEA
查看>>
SecureCRT中用vbs脚本批量执行unix命令
查看>>
.NET中的泛型和Java泛型中的类型擦除
查看>>
时间:2014年4月13日14:32:08 加入购物车
查看>>
数据存储的四种常见方式
查看>>
WebStorm常用设置和常用快捷键
查看>>
Eclipse设置软tab(用4个空格字符代替)
查看>>