Package com.sogou.qadev.service.cynthia.bean

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


      pstm = conn.prepareStatement(sql);
      pstm.setString(1, userName);
      rs = pstm.executeQuery();

      while(rs.next()){
        TagBean tb = new TagBean();
        tb.setId(rs.getString("id"));
        tb.setTagName(rs.getString("name"));
        tb.setCreateUsers(rs.getString("user_name"));
        tb.setTagColor(rs.getString("color"));
        allTagList.add(tb);
      }
    }catch(Exception e)
    {
      e.printStackTrace();
View Full Code Here


      pstm.setString(1, userName);
      pstm.setString(2, dataId);
      rs = pstm.executeQuery();
     
      while(rs.next()){
        TagBean tBean = new TagBean();
        tBean.setId(rs.getString("id"));
        tBean.setTagName(rs.getString("name"));
        tBean.setTagColor(rs.getString("color"));
        allTagList.add(tBean);
      }
    }catch(Exception e)
    {
      e.printStackTrace();
View Full Code Here

TOP

Related Classes of com.sogou.qadev.service.cynthia.bean.TagBean

Copyright © 2018 www.massapicom. 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.