|
@@ -17,6 +17,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="status" column="status" />
|
|
<result property="status" column="status" />
|
|
<result property="phone" column="phone" />
|
|
<result property="phone" column="phone" />
|
|
<result property="bussinessType" column="bussiness_type" />
|
|
<result property="bussinessType" column="bussiness_type" />
|
|
|
|
+ <result property="url" column="url" />
|
|
<result property="remark" column="remark" />
|
|
<result property="remark" column="remark" />
|
|
<result property="hasParsed" column="has_parsed" />
|
|
<result property="hasParsed" column="has_parsed" />
|
|
<result property="parsedVoiceContent" column="parsed_voice_content" />
|
|
<result property="parsedVoiceContent" column="parsed_voice_content" />
|
|
@@ -29,10 +30,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTCallRecordVo">
|
|
<sql id="selectTCallRecordVo">
|
|
- select id, type, user_id, user_name, service_category, time_begin, time_end, times, category, status, phone, bussiness_type, remark, has_parsed, parsed_voice_content, del_flag, revision, create_by, create_time, update_by, update_time from t_call_record
|
|
|
|
|
|
+ select id, type, user_id, user_name, service_category, time_begin, time_end, times, category, status, phone, bussiness_type, url, remark, has_parsed, parsed_voice_content, del_flag, revision, create_by, create_time, update_by, update_time from t_call_record
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectTCallRecordById" parameterType="Long" resultMap="TCallRecordResult">
|
|
<select id="selectTCallRecordById" parameterType="Long" resultMap="TCallRecordResult">
|
|
<include refid="selectTCallRecordVo"/>
|
|
<include refid="selectTCallRecordVo"/>
|
|
where id = #{id} and del_flag = 0
|
|
where id = #{id} and del_flag = 0
|
|
@@ -52,6 +53,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="status != null">status,</if>
|
|
<if test="status != null">status,</if>
|
|
<if test="phone != null">phone,</if>
|
|
<if test="phone != null">phone,</if>
|
|
<if test="bussinessType != null">bussiness_type,</if>
|
|
<if test="bussinessType != null">bussiness_type,</if>
|
|
|
|
+ <if test="url != null">url,</if>
|
|
<if test="remark != null">remark,</if>
|
|
<if test="remark != null">remark,</if>
|
|
<if test="hasParsed != null">has_parsed,</if>
|
|
<if test="hasParsed != null">has_parsed,</if>
|
|
<if test="parsedVoiceContent != null">parsed_voice_content,</if>
|
|
<if test="parsedVoiceContent != null">parsed_voice_content,</if>
|
|
@@ -74,6 +76,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="status != null">#{status},</if>
|
|
<if test="status != null">#{status},</if>
|
|
<if test="phone != null">#{phone},</if>
|
|
<if test="phone != null">#{phone},</if>
|
|
<if test="bussinessType != null">#{bussinessType},</if>
|
|
<if test="bussinessType != null">#{bussinessType},</if>
|
|
|
|
+ <if test="url != null">#{url},</if>
|
|
<if test="remark != null">#{remark},</if>
|
|
<if test="remark != null">#{remark},</if>
|
|
<if test="hasParsed != null">#{hasParsed},</if>
|
|
<if test="hasParsed != null">#{hasParsed},</if>
|
|
<if test="parsedVoiceContent != null">#{parsedVoiceContent},</if>
|
|
<if test="parsedVoiceContent != null">#{parsedVoiceContent},</if>
|
|
@@ -100,6 +103,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="status != null">status = #{status},</if>
|
|
<if test="status != null">status = #{status},</if>
|
|
<if test="phone != null">phone = #{phone},</if>
|
|
<if test="phone != null">phone = #{phone},</if>
|
|
<if test="bussinessType != null">bussiness_type = #{bussinessType},</if>
|
|
<if test="bussinessType != null">bussiness_type = #{bussinessType},</if>
|
|
|
|
+ <if test="url != null">url = #{url},</if>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
<if test="hasParsed != null">has_parsed = #{hasParsed},</if>
|
|
<if test="hasParsed != null">has_parsed = #{hasParsed},</if>
|
|
<if test="parsedVoiceContent != null">parsed_voice_content = #{parsedVoiceContent},</if>
|
|
<if test="parsedVoiceContent != null">parsed_voice_content = #{parsedVoiceContent},</if>
|