IRegisterSchoolService.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.ruoyi.system.service;
  2. import java.util.List;
  3. import com.ruoyi.common.core.domain.AjaxResult;
  4. import com.ruoyi.system.domain.RegisterSchool;
  5. /**
  6. * 注册-学校Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2023-05-24
  10. */
  11. public interface IRegisterSchoolService
  12. {
  13. /**
  14. * 查询注册-学校
  15. *
  16. * @param id 注册-学校主键
  17. * @return 注册-学校
  18. */
  19. public RegisterSchool selectRegisterSchoolById(Long id);
  20. /**
  21. * 查询注册-学校列表
  22. *
  23. * @param registerSchool 注册-学校
  24. * @return 注册-学校集合
  25. */
  26. public List<RegisterSchool> selectRegisterSchoolList(RegisterSchool registerSchool);
  27. /**
  28. * 新增注册-学校
  29. *
  30. * @param registerSchool 注册-学校
  31. * @return 结果
  32. */
  33. public AjaxResult insertRegisterSchool(RegisterSchool registerSchool);
  34. /**
  35. * 修改注册-学校
  36. *
  37. * @param registerSchool 注册-学校
  38. * @return 结果
  39. */
  40. public int updateRegisterSchool(RegisterSchool registerSchool);
  41. /**
  42. * 批量删除注册-学校
  43. *
  44. * @param ids 需要删除的注册-学校主键集合
  45. * @return 结果
  46. */
  47. public int deleteRegisterSchoolByIds(Long[] ids);
  48. /**
  49. * 删除注册-学校信息
  50. *
  51. * @param id 注册-学校主键
  52. * @return 结果
  53. */
  54. public int deleteRegisterSchoolById(Long id);
  55. AjaxResult queryInfo(String openId);
  56. }