ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.base.service;
 
import jnpf.base.entity.CommonWordsEntity;
import jnpf.base.model.commonword.ComWordsPagination;
 
import java.util.List;
 
/**
 * 审批常用语 Service
 *
 * @author JNPF开发平台组 YanYu
 * @version v3.4.6
 * @copyrignt 引迈信息技术有限公司
 * @date 2023-01-06
 */
public interface CommonWordsService extends SuperService<CommonWordsEntity> {
 
    /**
     * 系统常用语列表
     *
     * @param comWordsPagination 页面对象
     * @return 打印实体类
     */
    List<CommonWordsEntity> getSysList(ComWordsPagination comWordsPagination, Boolean currentSysFlag);
 
    /**
     * 个人常用语列表
     *
     * @param type 类型
     * @return 集合
     */
    List<CommonWordsEntity> getListModel(String type);
 
    /**
     * 系统是否被使用
     *
     * @param systemId 系统ID
     * @return 返回判断
     */
    Boolean existSystem(String systemId);
 
    /**
     * 常用语判重
     *
     * @param id              原id
     * @param commonWordsText 常用语
     * @return 返回判断
     */
    Boolean existCommonWord(String id, String commonWordsText, Integer commonWordsType);
 
    /**
     * 添加常用语次数
     *
     * @param commonWordsText 常用语
     * @return 返回判断
     */
    void addCommonWordsNum(String commonWordsText);
 
}