Package com.eatle.service.system.frontdata.impl

Source Code of com.eatle.service.system.frontdata.impl.ServiceInformationServiceImpl

package com.eatle.service.system.frontdata.impl;

import com.eatle.persistent.mapper.ServiceInformationMapper;
import com.eatle.persistent.pojo.system.frontdata.ServiceInformation;
import com.eatle.persistent.pojo.system.frontdata.ServiceInformationCriteria.Criteria;
import com.eatle.persistent.pojo.system.frontdata.ServiceInformationCriteria;
import com.eatle.service.system.frontdata.IServiceInformationService;
import com.eatle.utils.Pagination;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;

@Service("serviceInformationService")
public class ServiceInformationServiceImpl implements
    IServiceInformationService
{
  @Resource
  private ServiceInformationMapper serviceInformationMapper;

  @Override
  public int add(ServiceInformation entity)
  {
    return serviceInformationMapper.insert(entity);
  }

  @Override
  public int delete(ServiceInformation entity)
  {
    return serviceInformationMapper.deleteByPrimaryKey(entity.getId());
  }

  @Override
  public int update(ServiceInformation entity)
  {
    return serviceInformationMapper.updateByPrimaryKeySelective(entity);
  }

  @Override
  public Pagination findPagination(Map<String, Object> queryMap,
      int currentPage, int pageSize)
  {
    ServiceInformationCriteria serviceInformationCriteria = new ServiceInformationCriteria();
    Criteria criteria = serviceInformationCriteria.createCriteria();
    // 设置搜索条件参数
    if (queryMap != null)
    {
      if (queryMap.containsKey("mobile"))
      {
        criteria.andServeMobileLike("%"+ (String) queryMap.get("mobile") + "%");
      }
      if (queryMap.containsKey("tel"))
      {
        criteria.andServeTelLike("%"+ (String) queryMap.get("tel") + "%");
      }
      if (queryMap.containsKey("qq"))
      {
        criteria.andServeQqLike("%"+ (String) queryMap.get("qq") + "%");
      }
      if (queryMap.containsKey("email"))
      {
        criteria.andServeEmailLike("%"+ (String) queryMap.get("email") + "%");
      }
    }
    // 设置分页参数
    serviceInformationCriteria.setPageSize(pageSize);
    serviceInformationCriteria.setStartIndex((currentPage - 1) * pageSize);
    List<ServiceInformation> items = serviceInformationMapper.selectByCriteria(serviceInformationCriteria);
    int totalCount = (int) serviceInformationMapper.selectCountByCriteria(serviceInformationCriteria);
    return new Pagination(pageSize, currentPage, totalCount, items);
  }

  @Override
  public ServiceInformation findById(long id)
  {
    return serviceInformationMapper.selectByPrimaryKey(id);
  }

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

  @Override
  public List<ServiceInformation> findByCriteria(
      ServiceInformationCriteria criteria)
  {
    return serviceInformationMapper.selectByCriteria(criteria);
  }
}
TOP

Related Classes of com.eatle.service.system.frontdata.impl.ServiceInformationServiceImpl

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.