IAirStatusInfoService.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.kgraph.web.service;
  2. import java.util.List;
  3. import com.kgraph.web.domain.AirStatusInfo;
  4. /**
  5. * 飞机履历Service接口
  6. *
  7. * @author Allen
  8. * @date 2023-05-04
  9. */
  10. public interface IAirStatusInfoService
  11. {
  12. /**
  13. * 查询飞机履历
  14. *
  15. * @param id 飞机履历主键
  16. * @return 飞机履历
  17. */
  18. public AirStatusInfo selectAirStatusInfoById(Long id);
  19. /**
  20. * 查询飞机履历列表
  21. *
  22. * @param airStatusInfo 飞机履历
  23. * @return 飞机履历集合
  24. */
  25. public List<AirStatusInfo> selectAirStatusInfoList(AirStatusInfo airStatusInfo);
  26. /**
  27. * 新增飞机履历
  28. *
  29. * @param airStatusInfo 飞机履历
  30. * @return 结果
  31. */
  32. public int insertAirStatusInfo(AirStatusInfo airStatusInfo);
  33. /**
  34. * 修改飞机履历
  35. *
  36. * @param airStatusInfo 飞机履历
  37. * @return 结果
  38. */
  39. public int updateAirStatusInfo(AirStatusInfo airStatusInfo);
  40. /**
  41. * 批量删除飞机履历
  42. *
  43. * @param ids 需要删除的飞机履历主键集合
  44. * @return 结果
  45. */
  46. public int deleteAirStatusInfoByIds(Long[] ids);
  47. /**
  48. * 删除飞机履历信息
  49. *
  50. * @param id 飞机履历主键
  51. * @return 结果
  52. */
  53. public int deleteAirStatusInfoById(Long id);
  54. }