InternshipPlanClassMapper.java 717 B

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