| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspStat;
- import cn.com.goldenwater.dcproj.param.BisInspStatParam;
- import java.io.IOException;
- import java.util.Map;
- /**
- * 督查简报生成WORD 业务接口类
- *
- * @author lhc
- * @date 2019-10-16
- */
- public interface BisInspStatService extends CrudService<BisInspStat, BisInspStatParam> {
- /**
- * 根据开始时间和结束时间来生产数据
- *
- * @param fileName 文件名称 test.doc
- * @param stTm 开始时间
- * @param enTm 结束时间
- * @return filePath 生产文件访问路径
- * @throws IOException IO异常
- */
- String getDocByTm(String fileName, String stTm, String enTm, Map<String,Object> map,String orgId) throws IOException;
- String getRsvrDocByTm(String fileName, String month, String persId,String currentOrgId) throws IOException;
- }
|