| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.dto.BisInspSecsurveyVlgDcdxDto;
- import cn.com.goldenwater.dcproj.dto.BisInspSecsurveyVlgDto;
- import cn.com.goldenwater.dcproj.dto.VillRgstrDto;
- import cn.com.goldenwater.dcproj.model.BisInspSecsurveyVlg;
- import cn.com.goldenwater.dcproj.param.BisInspSecsurveyVlgParam;
- import cn.com.goldenwater.dcproj.param.GetPageByNodeIdParam;
- import cn.com.goldenwater.dcproj.param.GetVillPageByNodeIdParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author zhengdafei
- * @date 2019-2-21
- */
- public interface BisInspSecsurveyVlgService extends CrudService<BisInspSecsurveyVlg, BisInspSecsurveyVlgParam> {
- // ------------------------- 自定方法 -------------------------
- public String add(BisInspSecsurveyVlg p) throws Exception;
- public int modify(BisInspSecsurveyVlg p) throws Exception;
- public PageInfo<BisInspSecsurveyVlg> queryListByPage(BisInspSecsurveyVlgParam p) throws Exception;
- public List<BisInspSecsurveyVlg> queryList(BisInspSecsurveyVlgParam p) throws Exception;
- public BisInspSecsurveyVlgDto getOne(BisInspSecsurveyVlgParam p) throws Exception;
- public BisInspSecsurveyVlgDto getNearOne(BisInspSecsurveyVlgParam p) throws Exception;
- List<BisInspSecsurveyVlg> getListByCodeAndPerId(VillRgstrDto villRgstrDto);
- PageInfo<BisInspSecsurveyVlg> getPageByCodeAndPerId(VillRgstrDto villRgstrDto);
- PageInfo<BisInspSecsurveyVlgDcdxDto> getPageByNodeId(GetVillPageByNodeIdParam p) throws Exception ;
- }
|