Administrator
2018-11-05 2d950dce7919a2bc39464f9d264f7b96b69f6d1e
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
package com.yeshi.fanli.service.inter.config;
 
import java.util.List;
 
import org.springframework.cache.annotation.Cacheable;
 
import com.yeshi.fanli.entity.admin.SystemClientParamsAdmin;
import com.yeshi.fanli.entity.system.CustomerContent;
import com.yeshi.fanli.entity.system.CustomerName;
import com.yeshi.fanli.entity.system.System;
import com.yeshi.fanli.entity.system.SystemClientParams;
 
public interface SystemClientParamsService {
    
    public List<SystemClientParams> getSystemClientParamsBySystemId(long id);
 
    public List<SystemClientParamsAdmin> getAdminList(System system, String key);
 
    public void addSystemClientParamsList(SystemClientParams scp, List<System> list) throws Exception;
 
    public void deleteSystemClientParams(SystemClientParams scp, System system);
 
    public void addSystemClientParams(SystemClientParams scp, System system);
 
    public void deleteSystemClientParams(SystemClientParams scp);
 
    public SystemClientParamsAdmin getSystemClientParamsAdmin(SystemClientParams scp);
 
    public void update(SystemClientParams oscp, SystemClientParams nscp);
 
    /**
     * 按照系统和关键字获取客户端参数
     * 
     * @param system
     * @param key
     * @return
     */
    public SystemClientParams getSystemClientParamsBySystemAndKey(System system, String key);
 
    public Integer getCount(int type);
 
    public List<CustomerName> customerNameList(int i, String key, int type);
 
    public void deleteHelp(long id);
 
    public CustomerName getHelpCenter(int type);
 
    public Integer getProblemCount(long id);
 
    public List<CustomerContent> getSecondProblemList(int i, String key, long id);
 
    public void deleteSecondProblem(long id);
 
    public CustomerContent getCustomerContent(long id);
 
    public void updateAnswerDetail(CustomerContent customerContent);
 
    public void addFirstMenu(CustomerName customerName, int type);
 
    public void addSecondMenu(CustomerContent customerContent, long cnId);
 
    public List<CustomerContent> contactCustomerService(String title);
 
}