| 1234567891011121314151617181920 |
- package com.xjrsoft.module.internship.mapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.internship.entity.InternshipPlanClass;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import org.apache.ibatis.annotations.Update;
- /**
- * @title: 实习计划班级表
- * @Author dzx
- * @Date: 2025-06-23
- * @Version 1.0
- */
- @Mapper
- public interface InternshipPlanClassMapper extends MPJBaseMapper<InternshipPlanClass> {
- @Update("update internship_plan_class set delete_mark = 1 where internship_plan_teacher_id = #{internshipPlanTeacherId}")
- Boolean deleteByInternshipPlanTeacherId(@Param("internshipPlanTeacherId") Long internshipPlanTeacherId);
- }
|