예제 #1
0
파일: MapService.java 프로젝트: royxhl/crm
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#searchUsersCount(com.deppon.crm.module.marketing.shared.domain.MapQueryCondition)
  */
 @Override
 public int searchUsersCount(MapQueryCondition condition) {
   return mapDao.searchUsersCount(condition);
 }
예제 #2
0
파일: MapService.java 프로젝트: royxhl/crm
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#updateCustomerLocation(com.deppon.crm.module.marketing.shared.domain.CustomerLocation)
  */
 @Override
 public boolean updateCustomerLocation(CustomerLocation customerLocation) {
   return mapDao.updateCustomerLocation(customerLocation);
 }
예제 #3
0
파일: MapService.java 프로젝트: royxhl/crm
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#isCustomerLocationExist(com.deppon.crm.module.marketing.shared.domain.CustomerLocation)
  */
 @Override
 public boolean isCustomerLocationExist(CustomerLocation customerLocation) {
   return mapDao.isCustomerLocationExist(customerLocation);
 }
예제 #4
0
파일: MapService.java 프로젝트: royxhl/crm
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#insertCustomerLocation(com.deppon.crm.module.marketing.shared.domain.CustomerLocation)
  */
 @Override
 public boolean insertCustomerLocation(CustomerLocation customerLocation) {
   return mapDao.insertCustomerLocation(customerLocation);
 }
예제 #5
0
파일: MapService.java 프로젝트: royxhl/crm
 /**
  * (non-Javadoc)
  *
  * @see
  *     com.deppon.crm.module.marketing.server.service.IMapService#searchUsers(com.deppon.crm.module.marketing.shared.domain.MapQueryCondition,
  *     int, int)
  */
 @Override
 public List<MapView> searchUsers(MapQueryCondition condition, int start, int limit) {
   return mapDao.searchUsers(condition, start, limit);
 }