d2a9f5154b93235273453b07c66766c952fa7ec5.svn-base 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.core.service.CrudService;
  3. import cn.com.goldenwater.dcproj.dto.TacCountDto;
  4. import cn.com.goldenwater.dcproj.model.TacInspYearBatch;
  5. import cn.com.goldenwater.dcproj.param.TacInspYearBatchParam;
  6. import com.github.pagehelper.PageInfo;
  7. import org.springframework.web.multipart.MultipartFile;
  8. import java.util.List;
  9. import java.util.Map;
  10. /**
  11. * @author lune
  12. * @date 2019-9-6
  13. */
  14. public interface TacInspYearBatchService extends CrudService<TacInspYearBatch, TacInspYearBatchParam> {
  15. // ------------------------- 自定方法 -------------------------
  16. List<TacInspYearBatch> getTacInspYearBatchList(TacInspYearBatchParam tacInspYearBatchParam);
  17. PageInfo<TacInspYearBatch> getTacInspYearBatchPage(TacInspYearBatchParam tacInspYearBatchParam);
  18. TacInspYearBatch getTacInspYearBatchById(String id, String province);
  19. int cleanAllObjByYearBatchId(String yearBatchId);
  20. int updateYearBatch(TacInspYearBatch tacInspYearBatch);
  21. int deleteYearBatchAllObj(String yearBatchId, String province);
  22. TacInspYearBatch getCurrTacInspBatch(TacInspYearBatchParam tacInspYearBatchParam);
  23. List<TacInspYearBatch> getTacInspBatchByPersId(TacInspYearBatchParam tacInspYearBatchParam);
  24. List<TacInspYearBatch> getBatchList(TacInspYearBatchParam tacInspYearBatchParam);
  25. PageInfo<TacInspYearBatch> getBatchPage(TacInspYearBatchParam tacInspYearBatchParam);
  26. List<TacCountDto> countGroupAndPers(TacInspYearBatchParam tacInspYearBatchParam);
  27. List<TacCountDto> countRoleTypeAndPers(TacInspYearBatchParam tacInspYearBatchParam);
  28. List<TacCountDto> countArea(TacInspYearBatchParam tacInspYearBatchParam);
  29. TacCountDto getAllCountPers(TacInspYearBatchParam tacInspYearBatchParam);
  30. Map<String,Object> uploadAuditExcel(MultipartFile file, TacInspYearBatchParam tacInspYearBatchParam);
  31. }