| 12345678910111213141516171819202122232425262728 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspPlanChk;
- import cn.com.goldenwater.dcproj.param.BisInspPlanChkParam;
- import org.springframework.web.bind.annotation.RequestBody;
- import javax.servlet.http.HttpServletResponse;
- /**
- * @author lhc
- * @date 2021-4-1
- */
- public interface BisInspPlanChkService extends CrudService<BisInspPlanChk, BisInspPlanChkParam> {
- /**
- * 导出检查计划表
- * 1. 判断责任处室是否有值:
- * IF:
- * 导出这个责任处室
- * ELSE:
- * 导出所有
- * @param response 返回excel
- * @param bisInspPlanChkParam
- */
- void exportCheckList(HttpServletResponse response, @RequestBody BisInspPlanChkParam bisInspPlanChkParam);
- }
|