| 1234567891011121314151617181920212223242526272829303132333435363738 |
- 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<BisInspVillRgstr, BisInspVillRgstrParam> {
- // ------------------------- 自定方法 -------------------------
- public String add(BisInspVillRgstr bisInspVillRgstr) throws Exception;
- public String modify(BisInspVillRgstr bisInspVillRgstr) throws Exception;
- public PageInfo<BisInspVillRgstr> queryListByPage(BisInspVillRgstrParam p) throws Exception;
- public List<BisInspVillRgstr> queryList(BisInspVillRgstrParam p) throws Exception;
- public List<BisInspVillRgstr> findListByPersId(String param,String orgId) throws Exception;
- PageInfo<BisInspVillRgstrDto> findPageByType(TypeParam typeParam);
- List<BisInspVillRgstrDto> findTree(TypeParam typeParam);
- List<BisInspVillRgstrDto> findListByType(TypeParam typeParam);
- String getEngId(String objId,String persId) throws Exception;
- }
|