forked from kidgrow-microservices-platform

dougang
2020-11-04 b5c197d06d35d56a9fbcb379e49ad07698d7dd90
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
package com.xxl.job.core.biz.model;
 
import java.io.Serializable;
 
/**
 * Created by xuxueli on 2017-05-10 20:22:42
 */
public class RegistryParam implements Serializable {
    private static final long serialVersionUID = 42L;
 
    private String registGroup;
    private String registryKey;
    private String registryValue;
 
    public RegistryParam(){}
    public RegistryParam(String registGroup, String registryKey, String registryValue) {
        this.registGroup = registGroup;
        this.registryKey = registryKey;
        this.registryValue = registryValue;
    }
 
    public String getRegistGroup() {
        return registGroup;
    }
 
    public void setRegistGroup(String registGroup) {
        this.registGroup = registGroup;
    }
 
    public String getRegistryKey() {
        return registryKey;
    }
 
    public void setRegistryKey(String registryKey) {
        this.registryKey = registryKey;
    }
 
    public String getRegistryValue() {
        return registryValue;
    }
 
    public void setRegistryValue(String registryValue) {
        this.registryValue = registryValue;
    }
 
    @Override
    public String toString() {
        return "RegistryParam{" +
                "registGroup='" + registGroup + '\'' +
                ", registryKey='" + registryKey + '\'' +
                ", registryValue='" + registryValue + '\'' +
                '}';
    }
}