| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="cn.gistack.sm.intelligentCall.mapper.CallTaskMapper"> |
| | | |
| | | <!--查詢任务列表数据--> |
| | | <select id="getCallListPage" resultType="cn.gistack.sm.intelligentCall.vo.CallTaskStatistic"> |
| | | select |
| | | ct."id", |
| | |
| | | </if> |
| | | order by ct."gmt_create" desc |
| | | </select> |
| | | |
| | | <!--查询呼叫详情列表信息--> |
| | | <select id="getCallTaskResultListPage" resultType="cn.gistack.sm.intelligentCall.vo.CallTaskResultVO"> |
| | | select |
| | | ctr."id", |
| | | ctr."call_result" as callResult, |
| | | ctr."call_duration" as callDuration, |
| | | ctr."call_conversation_round" as callConversationRound, |
| | | ctr."call_hangup_direction" as callHangupDirection, |
| | | ctr."call_id" as callId, |
| | | ctr."gmt_create" as gmtCreate, |
| | | ctr."calling_number" as callingNumber, |
| | | ctr."callee_number" as calleeNumber, |
| | | ctr."task_id" as taskId, |
| | | ctr."call_start_time" as callStartTime, |
| | | ctr."call_end_time" as callEndTime, |
| | | ctr."call_record_file" as callRecordFile, |
| | | ctr."intention_customer_flag" as intentionCustomerFlag, |
| | | ctr."is_deleted" as isDeleted |
| | | from "SJZT_ODS"."call_task_result" ctr |
| | | where 1=1 |
| | | order by ctr."gmt_create" desc |
| | | </select> |
| | | </mapper> |