| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.DTO.ServiceSubtaskDetailDTO; |
| | | import com.smartor.domain.ServiceSubtaskDetail; |
| | | import com.smartor.domain.ServiceSubtaskDetailTarget; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @date 2023-03-24 |
| | | */ |
| | | @Mapper |
| | | public interface ServiceSubtaskDetailMapper |
| | | { |
| | | public interface ServiceSubtaskDetailMapper { |
| | | /** |
| | | * 查询语音任务呼叫明细 |
| | | * |
| | |
| | | * @return 语音任务呼叫明细 |
| | | */ |
| | | public ServiceSubtaskDetail selectServiceSubtaskDetailByCalldetailid(String calldetailid); |
| | | |
| | | public List<ServiceSubtaskDetailDTO> queryFillCount(@Param("subids") List<Long> subids, @Param("questiontext") String questiontext); |
| | | |
| | | public ServiceSubtaskDetailDTO isExistServiceSubtaskDetail(@Param("subid") Long subid, @Param("scriptid") Long scriptid); |
| | | |
| | | /** |
| | | * 查询语音任务呼叫明细列表 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int updateServiceSubtaskDetail(ServiceSubtaskDetail serviceSubtaskDetail); |
| | | |
| | | public int updateSSDByCondition(ServiceSubtaskDetail serviceSubtaskDetail); |
| | | |
| | | /** |