| 1234567891011121314151617181920212223 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.dcproj.model.BisInspAllObj;
- import cn.com.goldenwater.dcproj.param.TypeParam;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- /**
- * Created by jinshui on 2020/4/2.
- */
- public interface BisInspObjStrategy {
- void insertObj(BisInspAllObj bisInspAllObj,String persId);
- String getType();
- void cleanObjData(String objId);
- PageInfo findObjPageByType(TypeParam typeParam, HttpServletResponse response);
- Object findObjListByType(TypeParam typeParam);
- }
|