Examples of updateOrders()


Examples of com.lgx8.gateway.dao.IOrderDao.updateOrders()

    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IOrderDao orderDao = (IOrderDao)ac.getBean("orderDao");
   
    Orders o = orderDao.findOrders(StrUtil.parseLong(orderId));
    o.setRemark(remark);
    orderDao.updateOrders(o);
   
     
        PrintWriter out = response.getWriter();
        out.println("1");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.