家居大模型联调,分析客户产品需求,家庭结构和情感倾向

This commit is contained in:
ZLI263
2025-11-19 17:14:20 +08:00
parent 45d4f668d3
commit 8720f97ed4
6 changed files with 262 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
<?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.AudioTextAnalysisFurnitureMapper">
<resultMap id="BaseResultMap" type="com.rj.entity.AudioTextAnalysisFurniture">
<id column="id" property="id"/>
<result column="parent_id" property="parentId"/>
<result column="customer_type" property="customerType"/>
<result column="family_structure" property="familyStructure"/>
<result column="intention_products" property="intentionProducts"/>
<result column="decoration_style" property="decorationStyle"/>
<result column="summary_sentence" property="summarySentence"/>
<result column="sofa" property="sofa"/>
<result column="tea_table" property="teaTable"/>
<result column="dining_table" property="diningTable"/>
<result column="study_desk" property="studyDesk"/>
<result column="tv_cabinet" property="tvCabinet"/>
<result column="cabinet" property="cabinet"/>
<result column="wine_cabinet" property="wineCabinet"/>
<result column="master_bedroom_cabinet" property="masterBedroomCabinet"/>
<result column="secondary_bedroom_cabinet" property="secondaryBedroomCabinet"/>
<result column="shoe_cabinet" property="shoeCabinet"/>
<result column="bed_and_mattress" property="bedAndMattress"/>
<result column="owner_phone" property="ownerPhone"/>
<result column="owner_id" property="ownerId"/>
<result column="customer_phone" property="customerPhone"/>
<result column="customer_id" property="customerId"/>
<result column="created_at" property="createdAt"/>
<result column="updated_at" property="updatedAt"/>
</resultMap>
<sql id="Base_Column_List">
id, parent_id, customer_type, family_structure, intention_products,
decoration_style, summary_sentence, sofa, tea_table, dining_table,
study_desk, tv_cabinet, cabinet, wine_cabinet, master_bedroom_cabinet,
secondary_bedroom_cabinet, shoe_cabinet, bed_and_mattress,
owner_phone, owner_id, customer_phone, customer_id, created_at, updated_at
</sql>
</mapper>