IAppGameClassifyService.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.game.business.service;
  2. import java.util.List;
  3. import com.game.business.domain.AppGameClassify;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. /**
  6. * 游戏分类Service接口
  7. *
  8. * @author dos
  9. * @date 2024-06-14
  10. */
  11. public interface IAppGameClassifyService extends IService<AppGameClassify> {
  12. /**
  13. * 查询游戏分类
  14. *
  15. * @param id 游戏分类主键
  16. * @return 游戏分类
  17. */
  18. public AppGameClassify selectAppGameClassifyById(Long id);
  19. /**
  20. * 查询游戏分类列表
  21. *
  22. * @param appGameClassify 游戏分类
  23. * @return 游戏分类集合
  24. */
  25. public List<AppGameClassify> selectAppGameClassifyList(AppGameClassify appGameClassify);
  26. /**
  27. * 新增游戏分类
  28. *
  29. * @param appGameClassify 游戏分类
  30. * @return 结果
  31. */
  32. public int insertAppGameClassify(AppGameClassify appGameClassify);
  33. /**
  34. * 修改游戏分类
  35. *
  36. * @param appGameClassify 游戏分类
  37. * @return 结果
  38. */
  39. public int updateAppGameClassify(AppGameClassify appGameClassify);
  40. /**
  41. * 批量删除游戏分类
  42. *
  43. * @param ids 需要删除的游戏分类主键集合
  44. * @return 结果
  45. */
  46. public int deleteAppGameClassifyByIds(Long[] ids);
  47. /**
  48. * 删除游戏分类信息
  49. *
  50. * @param id 游戏分类主键
  51. * @return 结果
  52. */
  53. public int deleteAppGameClassifyById(Long id);
  54. /**
  55. * 根据code查询
  56. * @param code
  57. * @return
  58. */
  59. AppGameClassify getByCode(String code);
  60. }