ITemplateDataSourceService.java
1.99 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.lhcredit.project.business.templateDataSource.service;
import com.lhcredit.framework.web.domain.AjaxResult;
import com.lhcredit.project.business.reportMake.reportTemp.WebTempConfig;
import com.lhcredit.project.business.templateDataSource.domain.TemplateDataSource;
import java.util.List;
/**
* 报告模版数据源 服务层
*
* @author lhcredit
* @date 2025-04-03
*/
public interface ITemplateDataSourceService {
/**
* 查询报告模版数据源信息
*
* @param id 报告模版数据源ID
* @return 报告模版数据源信息
*/
public TemplateDataSource selectTemplateDataSourceById(Integer id);
/**
* 查询报告模版数据源列表
*
* @param templateDataSource 报告模版数据源信息
* @return 报告模版数据源集合
*/
public List<TemplateDataSource> selectTemplateDataSourceList(TemplateDataSource templateDataSource);
/**
* 字段转换
* @param templateDataSource 报告模版数据源信息
* @return 报告模版数据源信息
*/
public TemplateDataSource changeModel(TemplateDataSource templateDataSource);
/**
* 列表转换
*
* @param templateDataSourceList 报告模版数据源集合
* @return 报告模版数据源集合
*/
public List<TemplateDataSource> changeModel(List<TemplateDataSource> templateDataSourceList);
/**
* 新增报告模版数据源
*
* @param templateDataSource 报告模版数据源信息
* @return 结果
*/
public int insertTemplateDataSource(TemplateDataSource templateDataSource);
/**
* 修改报告模版数据源
*
* @param templateDataSource 报告模版数据源信息
* @return 结果
*/
public int updateTemplateDataSource(TemplateDataSource templateDataSource);
/**
* 删除报告模版数据源信息
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteTemplateDataSourceByIds(String ids);
}