CostCostingCollectionService.java 696 B

123456789101112131415161718192021222324252627282930
  1. package com.kcim.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.kcim.dao.model.CostCostingCollection;
  4. import java.util.List;
  5. /**
  6. * 成本数据归集后列表
  7. *
  8. * @author KCYG
  9. * @email KCYG@xinxicom
  10. * @date 2021-08-18 15:27:02
  11. */
  12. public interface CostCostingCollectionService extends IService<CostCostingCollection> {
  13. /**
  14. * 归集后的数据删除
  15. * @param idList
  16. */
  17. void deleteByIds(List<Long> idList);
  18. /**
  19. * 分摊后报表输出
  20. * @param writer
  21. * @param shareNumber
  22. * @param sheet
  23. * @return
  24. */
  25. // ExcelWriter getShareReportTemplate(ExcelWriter writer, Integer shareNumber, Sheet sheet);
  26. }