客户统计的代码框架

This commit is contained in:
2026-02-08 17:10:25 +08:00
parent 6350261a55
commit c003cbb11c
9 changed files with 584 additions and 2 deletions

View File

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