Examples of GuideBean


Examples of com.sogou.qadev.service.cynthia.bean.GuideBean

      String sql = "select * from guide where isDeleted = 0 order by id";
      pstm = conn.prepareStatement(sql);
      rs = pstm.executeQuery();

      while(rs.next()){
        GuideBean guideBean = new GuideBean();
        guideBean.setId(rs.getInt("id"));
        guideBean.setGuideId(rs.getString("guide_id"));
        guideBean.setGuideName(rs.getString("guide_name"));
        guideBean.setParentId(rs.getInt("parent_id"));
        guideBean.setDeleted(rs.getBoolean("isDeleted"));
        all.add(guideBean);
      }
    }catch(Exception e)
    {
      e.printStackTrace();
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.