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

com.quhaodian.area.data.service.AreaService Maven / Gradle / Ivy

The newest version!
package com.quhaodian.area.data.service;

import com.quhaodian.area.data.entity.Area;
import com.quhaodian.data.page.Filter;
import com.quhaodian.data.page.Order;
import com.quhaodian.data.page.Page;
import com.quhaodian.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