feat:增加空域限时规则

This commit is contained in:
gyb 2026-03-02 10:11:37 +08:00
parent 79fcee731d
commit 78428c9e98
1 changed files with 2 additions and 18 deletions

View File

@ -66,11 +66,11 @@ public interface IAirlineAreaGroupService {
* 批量移动空域到新分组 * 批量移动空域到新分组
* *
* @param areaIds 空域ID列表 * @param areaIds 空域ID列表
* @param groupId 原分组ID * @param oldGroupId 原分组ID
* @param newGroupId 新分组ID * @param newGroupId 新分组ID
* @return 移动结果 * @return 移动结果
*/ */
int batchMoveAreaToNewGroup(List<Long> areaIds, Long groupId, Long newGroupId); int batchMoveAreaToNewGroup(List<Long> areaIds, Long oldGroupId, Long newGroupId);
/** /**
* 根据用户ID查询空域列表支持名称模糊查询 * 根据用户ID查询空域列表支持名称模糊查询
@ -79,20 +79,4 @@ public interface IAirlineAreaGroupService {
* @return 空域列表 * @return 空域列表
*/ */
List<AirlineAreaDTO> selectAreaListByUserId(AirlineAreaDTO dto); List<AirlineAreaDTO> selectAreaListByUserId(AirlineAreaDTO dto);
/**
* 批量移动空域到新分组
* @param areaIds 空域ID列表
* @param oldGroupId 原分组ID
* @param newGroupId 新分组ID
* @return 移动结果
*/
int batchMoveAreaToNewGroup(List<Long> areaIds, Long oldGroupId, Long newGroupId);
/**
* 根据用户ID查询空域列表
* @param dto 查询条件
* @return 空域列表
*/
List<AirlineAreaDTO> selectAreaListByUserId(AirlineAreaDTO dto);
} }