| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.smartor.domain.PatSatisfaction; |
| | | import com.smartor.domain.VO.PatSatisfactionReqVO; |
| | | import com.smartor.domain.VO.PatSatisfactionResVO; |
| | | |
| | | /** |
| | | * 患者满意度Service接口 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deletePatSatisfactionById(Long id); |
| | | |
| | | /** |
| | | * 患者满意度统计 |
| | | * |
| | | * @param patSatisfactionReqVO 患者满意度统计条件 |
| | | * @return 患者满意度统计结果 |
| | | */ |
| | | public PatSatisfactionResVO statistics( PatSatisfactionReqVO patSatisfactionReqVO); |
| | | |
| | | |
| | | /** |
| | | * 患者满意度柱状图信息 |
| | | * |
| | | * @param patSatisfactionReqVO 患者满意度柱状图信息 |
| | | * @return 患者满意度柱状图信息 |
| | | */ |
| | | public Map<String, Object> satisfactionGraph(PatSatisfactionReqVO patSatisfactionReqVO); |
| | | } |