1234567891011121314151617181920212223 |
- package com.imed.costaccount.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.imed.costaccount.model.CostCostingCollection;
- /**
- * 成本数据归集后列表
- *
- * @author KCYG
- * @email KCYG@xinxicom
- * @date 2021-08-18 15:27:02
- */
- public interface CostCostingCollectionService extends IService<CostCostingCollection> {
- /**
- * 分摊后报表输出
- * @param writer
- * @param shareNumber
- * @param sheet
- * @return
- */
- // ExcelWriter getShareReportTemplate(ExcelWriter writer, Integer shareNumber, Sheet sheet);
- }
|