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
37
38
39
40
41
42
43
44
| package com.dji.sdk.mqtt.drc;
|
| import com.dji.sdk.mqtt.services.ServicesErrorCode;
|
| /**
| * @author wmm
| * @version 0.1
| * @date 2024/6/18
| */
| public class DrcReplyData<T> {
|
| private ServicesErrorCode result;
|
| private T output;
|
| public DrcReplyData() {
| }
|
| @Override
| public String toString() {
| return "DrcUpData{" +
| "result=" + result +
| ", output=" + output +
| '}';
| }
|
| public ServicesErrorCode getResult() {
| return result;
| }
|
| public DrcReplyData<T> setResult(ServicesErrorCode result) {
| this.result = result;
| return this;
| }
|
| public T getOutput() {
| return output;
| }
|
| public DrcReplyData<T> setOutput(T output) {
| this.output = output;
| return this;
| }
| }
|
|