package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.dto.BisInspVillRgstrDto; import cn.com.goldenwater.dcproj.model.BisInspRsvrRgstr; import cn.com.goldenwater.dcproj.model.BisInspRsvrRgstrDto; import cn.com.goldenwater.dcproj.model.BisInspVillRgstr; import cn.com.goldenwater.dcproj.param.BisInspVillRgstrParam; import cn.com.goldenwater.dcproj.param.TypeParam; import com.github.pagehelper.PageInfo; import java.util.List; /** * @author lune * @date 2019-2-19 */ public interface BisInspVillRgstrService extends CrudService { // ------------------------- 自定方法 ------------------------- public String add(BisInspVillRgstr bisInspVillRgstr) throws Exception; public String modify(BisInspVillRgstr bisInspVillRgstr) throws Exception; public PageInfo queryListByPage(BisInspVillRgstrParam p) throws Exception; public List queryList(BisInspVillRgstrParam p) throws Exception; public List findListByPersId(String param,String orgId) throws Exception; PageInfo findPageByType(TypeParam typeParam); List findTree(TypeParam typeParam); List findListByType(TypeParam typeParam); String getEngId(String objId,String persId) throws Exception; }