1234567891011121314151617181920 |
- package com.xjrsoft.module.weekly.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.weekly.entity.WeeklyDutySchedule;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Update;
- /**
- * @title: 值周排班
- * @Author dzx
- * @Date: 2023-12-30
- * @Version 1.0
- */
- @Mapper
- public interface WeeklyDutyScheduleMapper extends MPJBaseMapper<WeeklyDutySchedule> {
- //清空指定表
- @Update("truncate table weekly_duty_schedule")
- void deleteAll();
- }
|