feat:增加空域限时规则
This commit is contained in:
parent
79fcee731d
commit
78428c9e98
|
|
@ -66,11 +66,11 @@ public interface IAirlineAreaGroupService {
|
|||
* 批量移动空域到新分组
|
||||
*
|
||||
* @param areaIds 空域ID列表
|
||||
* @param groupId 原分组ID
|
||||
* @param oldGroupId 原分组ID
|
||||
* @param newGroupId 新分组ID
|
||||
* @return 移动结果
|
||||
*/
|
||||
int batchMoveAreaToNewGroup(List<Long> areaIds, Long groupId, Long newGroupId);
|
||||
int batchMoveAreaToNewGroup(List<Long> areaIds, Long oldGroupId, Long newGroupId);
|
||||
|
||||
/**
|
||||
* 根据用户ID查询空域列表,支持名称模糊查询
|
||||
|
|
@ -79,20 +79,4 @@ public interface IAirlineAreaGroupService {
|
|||
* @return 空域列表
|
||||
*/
|
||||
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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue