外呼记录修改

This commit is contained in:
zhangheng 2024-12-20 10:47:41 +08:00
parent 94dcfe1712
commit b07d2ade48
2 changed files with 8 additions and 0 deletions

View File

@ -92,4 +92,9 @@ public class UploadRobotPublishRecordDto extends BaseEntity {
* 题目类型
*/
private String questionType;
/**
* 电话拨通情况SUCCESS成功FAILURE失败EXPIRED超期自动作废如超期一周NULL或空字符串缺省值表示未执行
*/
private String phoneNodeExecuteResultStatus;
}

View File

@ -1179,6 +1179,9 @@
<if test="taskExcuteType != null and taskExcuteType != ''">
and spmrn.task_excute_type = #{taskExcuteType}
</if>
<if test="phoneNodeExecuteResultStatus != null and phoneNodeExecuteResultStatus != ''">
and spmrn.phone_node_execute_result_status = #{phoneNodeExecuteResultStatus}
</if>
<if test="sn != null and sn != ''">
and spmrn.sn = #{sn}
</if>