wangmengmeng
2024-12-24 24432a361d5c6bd6f3d8c008693e9f1155d62517
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.dji.sdk.cloudapi.config;
 
import com.dji.sdk.common.BaseModel;
 
import javax.validation.constraints.NotNull;
 
/**
 * @author sean
 * @version 1.3
 * @date 2022/11/10
 */
public class ProductConfigResponse extends BaseModel {
 
    private String ntpServerHost;
 
    @NotNull
    private String appId;
 
    @NotNull
    private String appKey;
 
    @NotNull
    private String appLicense;
 
    @NotNull
    private int ntpServerPort;
 
    public ProductConfigResponse() {
    }
 
    @Override
    public String toString() {
        return "ProductConfigResponse{" +
                "ntpServerHost='" + ntpServerHost + '\'' +
                ", ntpServerPort='" + ntpServerPort + '\'' +
                ", appId='" + appId + '\'' +
                ", appKey='" + appKey + '\'' +
                ", appLicense='" + appLicense + '\'' +
                '}';
    }
 
    public String getNtpServerHost() {
        return ntpServerHost;
    }
 
    public ProductConfigResponse setNtpServerHost(String ntpServerHost) {
        this.ntpServerHost = ntpServerHost;
        return this;
    }
 
    public int getNtpServerPort() {
        return ntpServerPort;
    }
 
    public ProductConfigResponse setNtpServerPort(int ntpServerPort) {
        this.ntpServerPort = ntpServerPort;
        return this;
    }
 
    public String getAppId() {
        return appId;
    }
 
    public ProductConfigResponse setAppId(String appId) {
        this.appId = appId;
        return this;
    }
 
    public String getAppKey() {
        return appKey;
    }
 
    public ProductConfigResponse setAppKey(String appKey) {
        this.appKey = appKey;
        return this;
    }
 
    public String getAppLicense() {
        return appLicense;
    }
 
    public ProductConfigResponse setAppLicense(String appLicense) {
        this.appLicense = appLicense;
        return this;
    }
}