rain
2024-03-23 08f58c4a65fc6cbdb530ecac9153b3904763d8b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.dji.sample.component.mqtt.model;
 
import lombok.Data;
 
/**
 * @author sean
 * @version 1.2
 * @date 2022/7/29
 */
@Data
public class EventsOutputProgressReceiver<T> {
 
    private String status;
 
    private OutputProgressReceiver progress;
 
    private T ext;
}