2026-01-23 18:42:11 +08:00
|
|
|
package com.ruoyi.airline.service.api;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.airline.service.dto.AirlineFileGroupInfoDTO;
|
2026-01-27 11:33:17 +08:00
|
|
|
import com.ruoyi.common.core.exception.base.BaseException;
|
2026-01-23 18:42:11 +08:00
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 航线分组明细
|
|
|
|
|
*
|
|
|
|
|
* @author 拓恒
|
|
|
|
|
*/
|
|
|
|
|
public interface IAirlineFileGroupInfoService {
|
2026-01-27 11:33:17 +08:00
|
|
|
List<AirlineFileGroupInfoDTO> selectGroupInfoListById(Long groupId);
|
2026-01-23 18:42:11 +08:00
|
|
|
|
|
|
|
|
|
2026-01-27 11:33:17 +08:00
|
|
|
Long save(AirlineFileGroupInfoDTO dto) throws BaseException;
|
2026-01-23 18:42:11 +08:00
|
|
|
|
2026-01-27 17:30:13 +08:00
|
|
|
Long deleteGroupInf(AirlineFileGroupInfoDTO dto) throws BaseException ;
|
2026-01-23 18:42:11 +08:00
|
|
|
}
|