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
| package com.dji.sdk.cloudapi.control;
|
| /**
| * @author sean
| * @version 1.7
| * @date 2023/6/29
| */
| public class DroneControlResponse {
|
| private Long seq;
|
| public DroneControlResponse() {
| }
|
| @Override
| public String toString() {
| return "DroneControlResponse{" +
| "seq=" + seq +
| '}';
| }
|
| public Long getSeq() {
| return seq;
| }
|
| public DroneControlResponse setSeq(Long seq) {
| this.seq = seq;
| return this;
| }
|
| }
|
|