yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.qianwen.smartman.modules.system.service;
 
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import com.qianwen.smartman.common.utils.ExcelUtils;
import com.qianwen.core.mp.base.BaseService;
import com.qianwen.core.oss.model.BladeFile;
import com.qianwen.core.tool.api.R;
import com.qianwen.smartman.modules.coproduction.dto.CheckParamDTO;
import com.qianwen.smartman.modules.coproduction.dto.CheckResultDTO;
import com.qianwen.smartman.modules.system.entity.CustomTemplate;
import com.qianwen.smartman.modules.system.vo.CustomTemplateSubmitVO;
import com.qianwen.smartman.modules.system.vo.CustomTemplateVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/service/ICustomTemplateService.class */
public interface ICustomTemplateService extends BaseService<CustomTemplate> {
    CustomTemplate savePlan(CustomTemplateSubmitVO customTemplateSubmitVO);
 
    CustomTemplate updatePlan(CustomTemplateSubmitVO customTemplateSubmitVO);
 
    R removePlan(List<Long> ids);
 
    List<CustomTemplateVO> listCustomTemplate(Integer businessType);
 
    CustomTemplateVO detail(String id);
 
    BladeFile excelTemplate(Long templateId, String templateName, ExcelUtils.ExcelTemplateDTO excelTemplateDTO);
 
    Boolean createTemplate(List<Long> ids, Integer businessType);
 
    BladeFile getTemplate(Integer businessType);
 
    BladeFile excelExport(List<Long> relationIds, String templateName, ExcelUtils.ExcelTemplateDTO excelTemplateDTO);
 
    List<CheckResultDTO> checkImport(Function<List<Map<String, String>>, List<CheckParamDTO>> function, Integer businessType, List<Map<String, String>> dataList);
}