Package com.lgx8.common.entities

Examples of com.lgx8.common.entities.GatewayConfig


*
*/
public class CardDao extends BaseDao implements ICardDao {

  public Card createCard() {
    Card card = new Card();
    card.setId(getNewCardId());
    getHibernateTemplate().persist(card);
    return card;
  }
View Full Code Here


      return (Long.parseLong(cards.get(0).getId())+1l)+"";
    }
  }

  public Card createCard(String cardNum) {
    Card card = new Card();
    card.setId(cardNum);
    getHibernateTemplate().persist(card);
    return card;
  }
View Full Code Here

  public Card createUserByCard(String card, Double score, long parenttype,
      long usertype, long organizationid, User parent, User opener,String mobile,String email) {
   
    String password = createRandomPassowrd(5);
   
    Card car= new Card();
    car.setId(card);
    car.setScore(score);
    car.setPassword(password);
    this.getHibernateTemplate().persist(car);
   
    String md5Passwd = EncryptUtil.toMD5(password);
    User user = new User();
    user.setPassword(md5Passwd);
View Full Code Here

    getHibernateTemplate().bulkUpdate("delete from Category c where c.id="+id);
  }
 
  public List<Category> findAllCategoryList(long id) {
    List<Category> list = new ArrayList<Category>();
    Category category = getHibernateTemplate().get(Category.class, id);
    if(category!=null) {
      list.add(category);
      List<Category> childs = findAllChilds(list);
      while(childs!=null&&childs.size()>0) {
        for(Category c:childs) {
View Full Code Here

    return findByPage4Report(hql, new Object[]{}, argment.getCurPage(), argment.getPageSize());
  }

  public List<Category> findAllCategoryList(long id) {
    List<Category> list = new ArrayList<Category>();
    Category category = findCategory(id);
    if(category!=null) {
      list.add(category);
      List<Category> childs = findAllChilds(list);
      while(childs!=null&&childs.size()>0) {
        for(Category c:childs) {
View Full Code Here

    }
  }
 
  @Transactional
  public void deleteCategory(long id) {
    Category category = findCategory(id);
    getHibernateTemplate().delete(category);
  }
View Full Code Here

  }

  @Transactional
  public GatewayCategoryDetail updateGatewayCategoryDetail(
      Integer categoryId, Integer id, String layerOrder) {
    GatewayCategory category = gatewayCategoryDao.findGatewayCategoryById(categoryId);
    GatewayCategoryDetail detail = getHibernateTemplate().get(GatewayCategoryDetail.class, id);
    detail.setCategory(category);
    detail.setLayerOrder(layerOrder);
    getHibernateTemplate().update(detail);
    return detail;
View Full Code Here

    return getHibernateTemplate().get(GatewayCategory.class, id);
  }

  public String getGatewayCategoryFullName(Integer id) {
    String name = "";
    GatewayCategory cate = this.findGatewayCategoryById(id);
    name = cate.getName();
    if(cate.getParent() != null)
    {
      GatewayCategory pcate = cate.getParent();
      name = getGatewayCategoryFullName(pcate.getId()) + "->" + name;
    }
    return name;
  }
View Full Code Here

      categoryId = "0";
    }else
    {
      Template temp = getConfiguration().getTemplate("listGatewayCategoryDetail.ftl");
     
      GatewayCategory category = gatewayService.findGatewayCategoryById(Integer.parseInt(categoryId));
     
      root.put("category", category);
     
      List<GatewayCategoryDetail> details = gatewayService.findGatewayCategoryDetailByCategoryId(Integer.parseInt(categoryId));
     
View Full Code Here

    String entityName = request.getParameter("entityName");
    String url = request.getParameter("url");
    String layerOrder = request.getParameter("layerOrder");
    if((!"".equals(categoryType)&&categoryType != null) &&("".equals(id)||id == null) && categoryId != null)
    {
      GatewayCategory category = gatewayService.findGatewayCategoryById(Integer.parseInt(categoryId));
     
      if("".equals(areaNode)|| areaNode == null || "null".equals(areaNode))
      {
        areaNode = "";
      }
View Full Code Here

TOP

Related Classes of com.lgx8.common.entities.GatewayConfig

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.