mac
2024-06-22 6c367c9f5284df943a8e0da7189899d0f351a39c
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
package com.hdl.photovoltaic.ui.bean;
 
import java.io.Serializable;
 
/**
 * 设备远程通讯信息对象
 */
public class DeviceRemoteInfo implements Serializable {
    public String getGatewayId() {
        return gatewayId;
    }
 
    public void setGatewayId(String gatewayId) {
        this.gatewayId = gatewayId;
    }
 
    public boolean isEncrypt() {
        return encrypt;
    }
 
    public void setEncrypt(boolean encrypt) {
        this.encrypt = encrypt;
    }
 
    public int getAlgorithmType() {
        return algorithmType;
    }
 
    public void setAlgorithmType(int algorithmType) {
        this.algorithmType = algorithmType;
    }
 
    public String getSpk() {
        return spk;
    }
 
    public void setSpk(String spk) {
        this.spk = spk;
    }
 
    public String getMac() {
        return mac;
    }
 
    public void setMac(String mac) {
        this.mac = mac;
    }
 
    public String getSecret() {
        return secret == null ? "" : secret;
    }
 
    public void setSecret(String secret) {
        this.secret = secret;
    }
 
    private String gatewayId;
    private boolean encrypt;//是否加密
    private int algorithmType;//0.SM4  1.AES  2.不加密
    private String spk;
    private String mac;//设备mac
    private String secret;//私钥
}