7f1fdf04abe9405f9e708a85debccc8825d7e036.svn-base 834 B

12345678910111213141516171819202122232425262728
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspPlanChk;
  4. import cn.com.goldenwater.dcproj.param.BisInspPlanChkParam;
  5. import org.springframework.web.bind.annotation.RequestBody;
  6. import javax.servlet.http.HttpServletResponse;
  7. /**
  8. * @author lhc
  9. * @date 2021-4-1
  10. */
  11. public interface BisInspPlanChkService extends CrudService<BisInspPlanChk, BisInspPlanChkParam> {
  12. /**
  13. * 导出检查计划表
  14. * 1. 判断责任处室是否有值:
  15. * IF:
  16. * 导出这个责任处室
  17. * ELSE:
  18. * 导出所有
  19. * @param response 返回excel
  20. * @param bisInspPlanChkParam
  21. */
  22. void exportCheckList(HttpServletResponse response, @RequestBody BisInspPlanChkParam bisInspPlanChkParam);
  23. }