12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.kgraph.web.service;
- import java.util.List;
- import com.kgraph.web.domain.AirStatusInfo;
- /**
- * 飞机履历Service接口
- *
- * @author Allen
- * @date 2023-05-04
- */
- public interface IAirStatusInfoService
- {
- /**
- * 查询飞机履历
- *
- * @param id 飞机履历主键
- * @return 飞机履历
- */
- public AirStatusInfo selectAirStatusInfoById(Long id);
- /**
- * 查询飞机履历列表
- *
- * @param airStatusInfo 飞机履历
- * @return 飞机履历集合
- */
- public List<AirStatusInfo> selectAirStatusInfoList(AirStatusInfo airStatusInfo);
- /**
- * 新增飞机履历
- *
- * @param airStatusInfo 飞机履历
- * @return 结果
- */
- public int insertAirStatusInfo(AirStatusInfo airStatusInfo);
- /**
- * 修改飞机履历
- *
- * @param airStatusInfo 飞机履历
- * @return 结果
- */
- public int updateAirStatusInfo(AirStatusInfo airStatusInfo);
- /**
- * 批量删除飞机履历
- *
- * @param ids 需要删除的飞机履历主键集合
- * @return 结果
- */
- public int deleteAirStatusInfoByIds(Long[] ids);
- /**
- * 删除飞机履历信息
- *
- * @param id 飞机履历主键
- * @return 结果
- */
- public int deleteAirStatusInfoById(Long id);
- }
|