ISimService.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.sim.service;
  2. import java.util.List;
  3. import com.ruoyi.sim.domain.Sim;
  4. /**
  5. * 模拟器Service接口
  6. *
  7. * @author tom
  8. * @date 2024-12-13
  9. */
  10. public interface ISimService {
  11. /**
  12. * 查询模拟器
  13. *
  14. * @param simId 模拟器主键
  15. * @return 模拟器
  16. */
  17. public Sim selectSimBySimId(Long simId);
  18. /**
  19. * 查询模拟器列表
  20. *
  21. * @param sim 模拟器
  22. * @return 模拟器集合
  23. */
  24. public List<Sim> selectSimList(Sim sim);
  25. /**
  26. * 新增模拟器
  27. *
  28. * @param sim 模拟器
  29. * @return 结果
  30. */
  31. public int insertSim(Sim sim);
  32. /**
  33. * 修改模拟器
  34. *
  35. * @param sim 模拟器
  36. * @return 结果
  37. */
  38. public int updateSim(Sim sim);
  39. /**
  40. * 批量删除模拟器
  41. *
  42. * @param simIds 需要删除的模拟器主键集合
  43. * @return 结果
  44. */
  45. public int deleteSimBySimIds(Long[] simIds);
  46. /**
  47. * 删除模拟器信息
  48. *
  49. * @param simId 模拟器主键
  50. * @return 结果
  51. */
  52. public int deleteSimBySimId(Long simId);
  53. }