b7ddaf900f0964ee79588d883098207cac2052df.svn-base 416 B

12345678910111213141516171819
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.dcproj.dto.ExcelInspPersDto;
  3. import java.util.List;
  4. /**
  5. * Created by jinshui on 2019/6/26.
  6. */
  7. public interface IndexService {
  8. void inputExcel();
  9. void inputTById(String type, String filePath);
  10. List<String> checkPers(String filePath);
  11. List<ExcelInspPersDto> inputRla(String filePath, String year,String mon, String type);
  12. }