package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.dto.BisInspRgstrDto; import cn.com.goldenwater.dcproj.model.BisZhejiangJgRgstr; import cn.com.goldenwater.dcproj.param.BisZhejiangJgRgstrParam; import cn.com.goldenwater.dcproj.param.TypeParam; import com.github.pagehelper.PageInfo; import java.util.List; /** * @author lune * @date 2020-5-12 */ public interface BisZhejiangJgRgstrService extends CrudService { /** * 获取浙江强监管分页列表 * @param typeParam 传参对象 * @return */ PageInfo getZhejiangJgRegstrInfo(TypeParam typeParam); // ------------------------- 自定方法 ------------------------- }