1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.dji.sample.component.mqtt.model;
|
| import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
| import lombok.Data;
|
| /**
| * @author sean
| * @version 1.1
| * @date 2022/6/9
| */
| @Data
| @JsonIgnoreProperties(ignoreUnknown = true)
| public class EventsReceiver<T> {
|
| private Integer result;
|
| private T output;
|
| private String bid;
|
| }
|
|