rain
2024-06-24 1fc2b9a38ce7fb5f0a78361a731e98750fbd20c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.dji.sample.component.mqtt.model;
 
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
 
/**
 * @author sean.zhou
 * @version 0.1
 * @date 2021/11/22
 */
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class ServiceReply<T> {
 
    private Integer result;
 
    private T info;
 
    private T output;
}