Examples of GuideAccessSessionMySQL


Examples of com.sogou.qadev.service.cynthia.dao.GuideAccessSessionMySQL

   * <p> Title:getAllGuide</p>
   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#getAllGuide()
   */
  public List<GuideBean> queryAllGuide(){
    return new GuideAccessSessionMySQL().getAll();
  }
View Full Code Here

Examples of com.sogou.qadev.service.cynthia.dao.GuideAccessSessionMySQL

   * @param guideId
   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#getGuideHtmlByGuideId(java.lang.String)
   */
  public String queryGuideHtmlByGuideId( String guideId){
    return new GuideAccessSessionMySQL().getGuideHtmlByGuideId(guideId);
  }
View Full Code Here

Examples of com.sogou.qadev.service.cynthia.dao.GuideAccessSessionMySQL

   * @param guideHtml
   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#saveGuideHtml(java.lang.String, java.lang.String)
   */
  public boolean saveGuideHtml(String guideId , String guideHtml){
    return new GuideAccessSessionMySQL().saveGuideHtml(guideId, guideHtml);
  }
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.