CostCostingCollectionService.java 582 B

1234567891011121314151617181920212223
  1. package com.imed.costaccount.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.imed.costaccount.model.CostCostingCollection;
  4. /**
  5. * 成本数据归集后列表
  6. *
  7. * @author KCYG
  8. * @email KCYG@xinxicom
  9. * @date 2021-08-18 15:27:02
  10. */
  11. public interface CostCostingCollectionService extends IService<CostCostingCollection> {
  12. /**
  13. * 分摊后报表输出
  14. * @param writer
  15. * @param shareNumber
  16. * @param sheet
  17. * @return
  18. */
  19. // ExcelWriter getShareReportTemplate(ExcelWriter writer, Integer shareNumber, Sheet sheet);
  20. }