百度外呼任务回调接口

This commit is contained in:
haoweina 2026-04-29 10:28:34 +08:00
parent a2158a4e09
commit 0fe1363b6d
5 changed files with 13 additions and 0 deletions

View File

@ -17,4 +17,17 @@
id, callback_type, callback_data, read_state, create_date, update_date
</sql>
<select id="getList" resultType="org.example.entity.AIOBCallbackEntity">
select * from aiob_callback_data
<where>
<if test="readState != null">
and read_state = #{readState}
</if>
</where>
</select>
<update id="updateReadState">
update aiob_callback_data set read_state = #{readState}, update_date = sysdate()
where id = #{id}
</update>
</mapper>