cf6633316053b9e76819ae08f505f72daaa965d7.svn-base 946 B

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.model.BisInspStat;
  4. import cn.com.goldenwater.dcproj.param.BisInspStatParam;
  5. import java.io.IOException;
  6. import java.util.Map;
  7. /**
  8. * 督查简报生成WORD 业务接口类
  9. *
  10. * @author lhc
  11. * @date 2019-10-16
  12. */
  13. public interface BisInspStatService extends CrudService<BisInspStat, BisInspStatParam> {
  14. /**
  15. * 根据开始时间和结束时间来生产数据
  16. *
  17. * @param fileName 文件名称 test.doc
  18. * @param stTm 开始时间
  19. * @param enTm 结束时间
  20. * @return filePath 生产文件访问路径
  21. * @throws IOException IO异常
  22. */
  23. String getDocByTm(String fileName, String stTm, String enTm, Map<String,Object> map,String orgId) throws IOException;
  24. String getRsvrDocByTm(String fileName, String month, String persId,String currentOrgId) throws IOException;
  25. }