| 12345678910111213141516171819 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.dcproj.dto.ExcelInspPersDto;
- import java.util.List;
- /**
- * Created by jinshui on 2019/6/26.
- */
- public interface IndexService {
- void inputExcel();
- void inputTById(String type, String filePath);
- List<String> checkPers(String filePath);
- List<ExcelInspPersDto> inputRla(String filePath, String year,String mon, String type);
- }
|