java110
2023-06-20 fe2e07f1fcb0e0cb01ba6c8db7bde7e4ad88521b
优化代码
1个文件已修改
8 ■■■■ 已修改文件
java110-db/src/main/resources/mapper/report/ReportUserQuestionAnswerValueServiceDaoImplMapper.xml 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
java110-db/src/main/resources/mapper/report/ReportUserQuestionAnswerValueServiceDaoImplMapper.xml
@@ -60,10 +60,10 @@
        <if test="qaType !=null and qaType != ''">
            and qa.qa_type= #{qaType}
        </if>
        <if test="startTime != null">
        <if test="startTime != null and startTime != ''">
            and t.create_time &gt; #{startTime}
        </if>
        <if test="endTime != null">
        <if test="endTime != null and endTime != ''">
            and t.create_time &lt; #{endTime}
        </if>
        order by t.create_time desc
@@ -126,10 +126,10 @@
        <if test="qaType !=null and qaType != ''">
            and qa.qa_type= #{qaType}
        </if>
        <if test="startTime != null">
        <if test="startTime != null and startTime != ''">
            and t.create_time &gt; #{startTime}
        </if>
        <if test="endTime != null">
        <if test="endTime != null and endTime != ''">
            and t.create_time &lt; #{endTime}
        </if>
        <if test="qaId !=null and qaId != ''">