123456789101112131415161718192021222324252627282930 |
- package com.kcim.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.kcim.dao.model.CostCostingCollection;
- import java.util.List;
- /**
- * 成本数据归集后列表
- *
- * @author KCYG
- * @email KCYG@xinxicom
- * @date 2021-08-18 15:27:02
- */
- public interface CostCostingCollectionService extends IService<CostCostingCollection> {
- /**
- * 归集后的数据删除
- * @param idList
- */
- void deleteByIds(List<Long> idList);
- /**
- * 分摊后报表输出
- * @param writer
- * @param shareNumber
- * @param sheet
- * @return
- */
- // ExcelWriter getShareReportTemplate(ExcelWriter writer, Integer shareNumber, Sheet sheet);
- }
|