All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.area.data.service.AreaService Maven / Gradle / Ivy

package com.haoxuer.discover.area.data.service;

import com.haoxuer.discover.area.data.entity.Area;
import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;
import java.util.List;

/**
 * Created by imake on 2017年08月04日10:01:33.
 */
public interface AreaService {
  
  Area findById(Integer id);
  
  Area save(Area bean);
  
  Area update(Area bean);
  
  Area deleteById(Integer id);
  
  Area[] deleteByIds(Integer[] ids);
  
  Area findByName(String name);
  
  
  Area findByCode(String code);
  
  
  Page page(Pageable pageable);
  
  Page page(Pageable pageable, Object search);
  
  List child(Integer id);
  
  List findByTops(Integer pid);
  
  List list(int first, Integer size, List filters, List orders);
  
  List findByLevel(Integer id);
  
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy