录音管理功能联调

This commit is contained in:
spllzh
2025-10-25 23:07:07 +08:00
parent 6801f06db5
commit c14476dc92
34 changed files with 1254 additions and 58 deletions

View File

@@ -126,6 +126,13 @@ spring:

View File

@@ -103,6 +103,10 @@ spring:
logic-delete-field: deleted
logic-delete-value: 1
logic-not-delete-value: 0
jackson:
deserialization:
# 忽略不能解析的字段。当前端传过来的字段,后端不能解析时直接抛弃。
fail-on-unknown-properties: false
knife4j:

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.rj.mapper.CommunicationRecordMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.rj.entity.CommunicationRecord">
<id column="id" property="id" />
<result column="customer_name" property="customerName" />
<result column="customer_phone" property="customerPhone" />
<result column="customer_id" property="customerId" />
<result column="communication_type" property="communicationType" />
<result column="communication_time" property="communicationTime" />
<result column="communication_content" property="communicationContent" />
<result column="communication_result" property="communicationResult" />
<result column="owner_name" property="ownerName" />
<result column="owner_phone" property="ownerPhone" />
<result column="todo_suggestion" property="todoSuggestion" />
<result column="create_time" property="createTime" />
<result column="update_time" property="updateTime" />
<result column="status" property="status" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
id, customer_name, customer_phone, customer_id, communication_type,
communication_time, communication_content, communication_result,
owner_name, owner_phone, todo_suggestion, create_time, update_time, status
</sql>
</mapper>

View File

@@ -302,6 +302,13 @@