问题汇总逻辑

This commit is contained in:
jie.lu
2025-07-24 11:03:34 +08:00
parent bf9fac4f0d
commit 7c341657e1
8 changed files with 270 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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.volvo.ai.analytic.center.mapper.TmCorpusQuestionReportMapper">
<select id="queryQuestionReportList" resultType="com.volvo.ai.analytic.center.dto.corpus.ImCurMessageDTO" >
SELECT
tcqr.user_demand as userDemand
FROM
`tm_corpus_question_report` tcqr
WHERE tcqr.is_deleted = 0
AND tcqr.msg_timestamp between #{statTime} and #{endTime}
AND tcqr.main_category = #{mainCategory}
</select>
</mapper>