无人机项目后端代码
sean.zhou
2022-09-23 a3360878835e4606c968441e432b0c3d4bd921ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
 
    private String sn;
 
}