cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.web.facade.desktop;
 
import java.util.Map;
 
import javax.servlet.http.HttpServletRequest;
 
public interface DesktopFacade {
 
    /**
     * 获取运维管理人员桌面信息
     * @param cusId
     * @return
     * @author chenlong
     */
    Map getOperationDeskDetail(String cusId);
 
    /**
     * 获取满意度曲线
     * @param request
     * @return
     * @author chenlong
     */
    Map getCusSatisfactionSurvey(HttpServletRequest request);
 
    /**
     * 获取客户满意度概况
     * @param cusId
     * @return
     * @author chenlong
     */
    Map getCusSatisfactionDetail(String cusId);
    
    
}