Package com.eatle.service.foundation.place.impl

Source Code of com.eatle.service.foundation.place.impl.CommunityServiceImpl

package com.eatle.service.foundation.place.impl;

import com.eatle.persistent.mapper.CommunityMapper;
import com.eatle.persistent.pojo.foundation.place.Community;
import com.eatle.persistent.pojo.foundation.place.CommunityCriteria.Criteria;
import com.eatle.persistent.pojo.foundation.place.CommunityCriteria;
import com.eatle.service.foundation.place.ICommunityService;
import com.eatle.service.foundation.place.IDistrictService;
import com.eatle.utils.Pagination;
import com.eatle.utils.StringUtil;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;

@Service("communityService")
public class CommunityServiceImpl implements ICommunityService
{
  @Resource
  private CommunityMapper communityMapper;
 
  @Resource
  private IDistrictService districtService;

  @Override
  public int add(Community entity)
  {
    return communityMapper.insert(entity);
  }

  @Override
  public int delete(Community entity)
  {
    return communityMapper.deleteByPrimaryKey(entity.getId());
  }

  @Override
  public int update(Community entity)
  {
    return communityMapper.updateByPrimaryKeySelective(entity);
  }

  @Override
  public Pagination findPagination(Map<String, Object> queryMap,
      int currentPage, int pageSize)
  {
    CommunityCriteria communityCriteria = new CommunityCriteria();
    Criteria criteria = communityCriteria.createCriteria();
    // 设置搜索条件参数
    if (queryMap != null)
    {
      if (queryMap.containsKey("name"))
      {
        criteria.andNameLike("%" + (String) queryMap.get("name") + "%");
      }
      if (queryMap.containsKey("pinyinName"))
      {
        criteria.andPinyinNameLike("%" + (String) queryMap.get("pinyinName") + "%");
      }
    }
    // 设置分页参数
    communityCriteria.setPageSize(pageSize);
    communityCriteria.setStartIndex((currentPage - 1) * pageSize);
    List<Community> communities = communityMapper.selectByCriteria(communityCriteria);
    // 结果集处理所属完整区域字符串
    List<Community> items = new ArrayList<Community>();
    for(Community c : communities)
    {
      StringBuffer sb = new StringBuffer();
      districtService.findAllFatherById(c.getDistrictId() == null ? -1 : c.getDistrictId(), sb);
      c.setDistrictName(StringUtil.reverseStrAsSplitStr(sb.toString(), ";"));
      items.add(c);
    }
    int totalCount = (int) communityMapper.selectCountByCriteria(communityCriteria);
    return new Pagination(pageSize, currentPage, totalCount, items);
  }

  @Override
  public Community findById(long id)
  {
    return communityMapper.selectByPrimaryKey(id);
  }

  @Override
  public List<Community> findAll()
  {
    return communityMapper.selectByCriteria(null);
  }

  @Override
  public List<Community> findByCriteria(CommunityCriteria criteria)
  {
    return communityMapper.selectByCriteria(criteria);
  }
}
TOP

Related Classes of com.eatle.service.foundation.place.impl.CommunityServiceImpl

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.