package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.AttRsBase; import cn.com.goldenwater.dcproj.model.BisInspSelArea; import cn.com.goldenwater.dcproj.param.BisInspSelAreaParam; import cn.com.goldenwater.dcproj.param.InGroupResParam; import com.github.pagehelper.PageInfo; import java.util.List; import java.util.Map; /** * @author litf * @date 2019-3-6 */ public interface BisInspSelAreaService extends CrudService { // ------------------------- 自定方法 ------------------------- List> getAreaByPersid(String persId,String orgId); List> getProvinceAreaByPersid(String persId, String end, String str, String pattern, String adCode,String pType,String orgId); List> getAddvcdByAdCode(String adCode, String adGrad); List> getPersByArea(String adCode,String orgId); PageInfo> getResByArea(BisInspSelAreaParam param); List> getOptionalArea(String id, String ad, String adName,String adCode,String orgId); PageInfo getAllSub(BisInspSelAreaParam param); List> getAddvcdCacheByAdCode(String adCode,String adGrad); PageInfo getResByGroup(InGroupResParam inGroupResParam); int deleteByGroupId(String id, String adCode,String orgId); List> getAreaByGroup(String id, String ad, String adName, String adCode,String province); PageInfo> getPawpByArea(BisInspSelAreaParam param); int deleteAreaData(String id, String province); }