houzhongjian
2024-11-22 49b510c77474fed0eff94e27f8d7a2d4e4cb7879
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
package com.xxl.job.admin.core.model;
 
import java.util.Date;
 
/**
 * Created by xuxueli on 16/9/30.
 */
public class XxlJobRegistry {
 
    private int id;
    private String registryGroup;
    private String registryKey;
    private String registryValue;
    private Date updateTime;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getRegistryGroup() {
        return registryGroup;
    }
 
    public void setRegistryGroup(String registryGroup) {
        this.registryGroup = registryGroup;
    }
 
    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;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}