ITemplateConfigurationService.java
2.02 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
72
73
74
75
76
77
78
package com.lhcredit.project.business.templateConfiguration.service;
import com.lhcredit.project.business.templateConfiguration.domain.TemplateConfiguration;
import java.util.List;
/**
* 模版配置 服务层
*
* @author lhcredit
* @date 2025-04-01
*/
public interface ITemplateConfigurationService {
/**
* 查询模版配置信息
*
* @param id 模版配置ID
* @return 模版配置信息
*/
public TemplateConfiguration selectTemplateConfigurationById(Long id);
/**
* 查询模版配置列表
*
* @param templateConfiguration 模版配置信息
* @return 模版配置集合
*/
public List<TemplateConfiguration> selectTemplateConfigurationList(TemplateConfiguration templateConfiguration);
/**
* 字段转换
* @param templateConfiguration 模版配置信息
* @return 模版配置信息
*/
public TemplateConfiguration changeModel(TemplateConfiguration templateConfiguration);
/**
* 列表转换
*
* @param templateConfigurationList 模版配置集合
* @return 模版配置集合
*/
public List<TemplateConfiguration> changeModel(List<TemplateConfiguration> templateConfigurationList);
/**
* 新增模版配置
*
* @param templateConfiguration 模版配置信息
* @return 结果
*/
public int insertTemplateConfiguration(TemplateConfiguration templateConfiguration);
/**
* 修改模版配置
*
* @param templateConfiguration 模版配置信息
* @return 结果
*/
public int updateTemplateConfiguration(TemplateConfiguration templateConfiguration);
/**
* 删除模版配置信息
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteTemplateConfigurationByIds(String ids);
/**
* g根据orgId查询
* @param orgId
* @return
*/
public TemplateConfiguration getTemppConfByOrg(Long orgId);
public TemplateConfiguration getTemppConfByOrg1(Long orgId);
// int task();
}