1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.dji.sample.map.service;
|
| import com.dji.sample.map.model.dto.GroupDTO;
|
| import java.util.List;
|
| /**
| * @author sean
| * @version 0.2
| * @date 2021/11/29
| */
| public interface IGroupService {
|
| /**
| * Query all groups in the workspace based on the workspace's id.
| * If the group id does not exist, do not add this filter condition.
| * @param workspaceId
| * @param groupId
| * @param isDistributed Used to define if the group needs to be distributed. Default is true.
| * @return
| */
| List<GroupDTO> getAllGroupsByWorkspaceId(String workspaceId, String groupId, Boolean isDistributed);
|
| }
|
|