IBaseStudentPostService.java 500 B

1234567891011121314151617181920212223
  1. package com.xjrsoft.module.student.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.student.entity.BaseStudentPost;
  4. import java.util.List;
  5. /**
  6. * @title: 学生职务设置
  7. * @Author dzx
  8. * @Date: 2023-11-13
  9. * @Version 1.0
  10. */
  11. public interface IBaseStudentPostService extends MPJBaseService<BaseStudentPost> {
  12. /**
  13. * 删除学生职务设置(逻辑)
  14. * @author phoenix
  15. * @return
  16. */
  17. Boolean deleteLogicallyBatchByIds(List<Long> ids);
  18. }