|
@@ -26,11 +26,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="callTime" column="call_time" />
|
|
<result property="callTime" column="call_time" />
|
|
|
<result property="cost" column="cost" />
|
|
<result property="cost" column="cost" />
|
|
|
<result property="callType" column="call_type" />
|
|
<result property="callType" column="call_type" />
|
|
|
|
|
+ <result property="hangupType" column="hangup_type" />
|
|
|
<result property="isWarning" column="is_warning" />
|
|
<result property="isWarning" column="is_warning" />
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
|
|
<sql id="selectCompanyVoiceRoboticCallLogCallphoneVo">
|
|
<sql id="selectCompanyVoiceRoboticCallLogCallphoneVo">
|
|
|
- select log_id, robotic_id, caller_id, run_time, run_param, result, status, create_time, record_path, content_list, caller_num, callee_num, uuid, call_create_time, call_answer_time, intention, company_id, company_user_id, call_time, cost, call_type, is_warning from company_voice_robotic_call_log_callphone
|
|
|
|
|
|
|
+ select log_id, robotic_id, caller_id, run_time, run_param, result, status, create_time, record_path, content_list, caller_num, callee_num, uuid, call_create_time, call_answer_time, intention, company_id, company_user_id, call_time, cost, call_type, hangup_type, is_warning from company_voice_robotic_call_log_callphone
|
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
|
|
<select id="selectCompanyVoiceRoboticCallLogCallphoneList" parameterType="CompanyVoiceRoboticCallLogCallphone" resultMap="CompanyVoiceRoboticCallLogCallphoneResult">
|
|
<select id="selectCompanyVoiceRoboticCallLogCallphoneList" parameterType="CompanyVoiceRoboticCallLogCallphone" resultMap="CompanyVoiceRoboticCallLogCallphoneResult">
|
|
@@ -88,6 +89,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="callTime != null">call_time,</if>
|
|
<if test="callTime != null">call_time,</if>
|
|
|
<if test="cost != null">cost,</if>
|
|
<if test="cost != null">cost,</if>
|
|
|
<if test="callType != null">call_type,</if>
|
|
<if test="callType != null">call_type,</if>
|
|
|
|
|
+ <if test="hangupType != null">hangup_type,</if>
|
|
|
<if test="isWarning != null">is_warning,</if>
|
|
<if test="isWarning != null">is_warning,</if>
|
|
|
<if test="violationNum != null">violation_num,</if>
|
|
<if test="violationNum != null">violation_num,</if>
|
|
|
</trim>
|
|
</trim>
|
|
@@ -113,6 +115,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="callTime != null">#{callTime},</if>
|
|
<if test="callTime != null">#{callTime},</if>
|
|
|
<if test="cost != null">#{cost},</if>
|
|
<if test="cost != null">#{cost},</if>
|
|
|
<if test="callType != null">#{callType},</if>
|
|
<if test="callType != null">#{callType},</if>
|
|
|
|
|
+ <if test="hangupType != null">#{hangupType},</if>
|
|
|
<if test="isWarning != null">#{isWarning},</if>
|
|
<if test="isWarning != null">#{isWarning},</if>
|
|
|
<if test="violationNum != null">#{violationNum},</if>
|
|
<if test="violationNum != null">#{violationNum},</if>
|
|
|
</trim>
|
|
</trim>
|
|
@@ -141,6 +144,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="callTime != null">call_time = #{callTime},</if>
|
|
<if test="callTime != null">call_time = #{callTime},</if>
|
|
|
<if test="cost != null">cost = #{cost},</if>
|
|
<if test="cost != null">cost = #{cost},</if>
|
|
|
<if test="callType != null">call_type = #{callType},</if>
|
|
<if test="callType != null">call_type = #{callType},</if>
|
|
|
|
|
+ <if test="hangupType != null">hangup_type = #{hangupType},</if>
|
|
|
<if test="isWarning != null">is_warning = #{isWarning},</if>
|
|
<if test="isWarning != null">is_warning = #{isWarning},</if>
|
|
|
<if test="violationNum != null">violation_num = #{violationNum},</if>
|
|
<if test="violationNum != null">violation_num = #{violationNum},</if>
|
|
|
<if test="manualAnswered != null">manual_answered = #{manualAnswered},</if>
|
|
<if test="manualAnswered != null">manual_answered = #{manualAnswered},</if>
|