录音统计

This commit is contained in:
spllzh
2025-08-16 06:13:09 +08:00
parent 45548df6bd
commit b3d28112a7
10 changed files with 1182 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?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.AudioManagementStatisticsMapper">
<!-- 删除指定日期的统计数据 -->
<delete id="deleteByStatisticsDate" parameterType="java.time.LocalDate">
DELETE FROM audio_management_statistics
WHERE statistics_date = #{date}
</delete>
</mapper>