Package com.dianping.cat.home.dal.report

Examples of com.dianping.cat.home.dal.report.UserDefineRule


  @Inject
  UserDefineRuleDao m_dao;

  public String addUserDefineText(String userDefinedText) throws DalException {
    UserDefineRule item = m_dao.findMaxId(UserDefineRuleEntity.READSET_MAXID);
    int id = 1;
    if (item != null) {
      id = item.getMaxId() + 1;
    }
   
    UserDefineRule userDefineRule = m_dao.createLocal();

    userDefineRule.setContent(userDefinedText);
    userDefineRule.setId(id);
    m_dao.insert(userDefineRule);
    return Integer.toString(id);
  }
View Full Code Here


  }

  public String getUserDefineText(String idStr) throws DalException {
    int id = Integer.parseInt(idStr);

    UserDefineRule item = m_dao.findByPK(id, UserDefineRuleEntity.READSET_FULL);
    return item.getContent();
  }
View Full Code Here

    UserDefineRule item = m_dao.findByPK(id, UserDefineRuleEntity.READSET_FULL);
    return item.getContent();
  }

  public void removeById(String id) throws DalException {
    UserDefineRule item = m_dao.createLocal();

    item.setId(Integer.parseInt(id));
    m_dao.deleteByPK(item);
  }
View Full Code Here

TOP

Related Classes of com.dianping.cat.home.dal.report.UserDefineRule

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.