| 123456789101112131415161718192021222324 |
- package com.xjrsoft.module.student.mapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.student.entity.EnrollmentPlan;
- import com.xjrsoft.module.student.entity.EnrollmentStatisticsInfo;
- import org.apache.ibatis.annotations.Delete;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- /**
- * @title: 攀宝招生数据统计表
- * @Author dzx
- * @Date: 2025年3月17日
- * @Version 1.0
- */
- @Mapper
- public interface EnrollmentStatisticsInfoMapper extends MPJBaseMapper<EnrollmentStatisticsInfo> {
- @Delete("delete from enrollment_statistics_info where delete_mark = 0 and data_day = #{dataDay} and data_type = 2")
- Boolean deleteGraduationDataByDate(@Param("dataDay") String dataDay);
- @Delete("delete from enrollment_statistics_info where delete_mark = 0 and data_start_day = #{dataStartDay} and data_end_day = #{dataEndDay} and data_type = 3")
- Boolean deleteCalendarDataByDate(@Param("dataStartDay") String dataStartDay, @Param("dataEndDay") String dataEndDay);
- }
|