1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| package com.dji.sample.manage.model.param;
|
| import lombok.Builder;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * The object of the device query field.
| *
| * @author sean.zhou
| * @date 2021/11/16
| * @version 0.1
| */
| @Data
| @Builder
| public class DeviceQueryParam {
|
| private String deviceSn;
|
| private String workspaceId;
|
| private Integer deviceType;
|
| private Integer subType;
|
| private List<Integer> domains;
|
| private String childSn;
|
| private Boolean boundStatus;
|
| private boolean orderBy;
|
| private boolean isAsc;
| }
|
|