| 123456789101112131415161718192021 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspRsfcoqhRgstr;
- import cn.com.goldenwater.dcproj.param.BisInspRsfcoqhRgstrParam;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- import java.util.Map;
- /**
- * @author lhc
- * @date 2021-6-10
- */
- public interface BisInspRsfcoqhRgstrService extends CrudService<BisInspRsfcoqhRgstr, BisInspRsfcoqhRgstrParam> {
- PageInfo findObjPageByType(TypeParam typeParam, HttpServletResponse response);
- void updateState(Map<String, Object> map);
- }
|