44323
2023-10-11 f7e51fc7c91e474e5c0bcc79c47f074c0a59b5c3
cloud-server-other/src/main/resources/mapper/FrequentlyAskedQuestionsMapper.xml
@@ -3,4 +3,19 @@
<mapper namespace="com.dsh.other.mapper.FrequentlyAskedQuestionsMapper">
    <update id="changeState">
        update t_frequently_asked_questions set
        state = #{type}
        <where>
        <if test="questionIds != null and questionIds.size()>0">
        AND t_frequently_asked_questions.id IN
        <foreach collection="questionIds" separator="," item="id" open="(" close=")">
            #{id}
        </foreach>
    </if>
        </where>
    </update>
    <select id="getInfo" resultType="com.dsh.other.entity.FrequentlyAskedQuestions">
        select * from t_frequently_asked_questions where id = #{id}
    </select>
</mapper>