houzhongjian
2024-11-22 49b510c77474fed0eff94e27f8d7a2d4e4cb7879
提交 | 用户 | 时间
e7c126 1 package com.xxl.job.admin.core.model;
H 2
3 import java.util.Date;
4
5 /**
6  * Created by xuxueli on 16/9/30.
7  */
8 public class XxlJobRegistry {
9
10     private int id;
11     private String registryGroup;
12     private String registryKey;
13     private String registryValue;
14     private Date updateTime;
15
16     public int getId() {
17         return id;
18     }
19
20     public void setId(int id) {
21         this.id = id;
22     }
23
24     public String getRegistryGroup() {
25         return registryGroup;
26     }
27
28     public void setRegistryGroup(String registryGroup) {
29         this.registryGroup = registryGroup;
30     }
31
32     public String getRegistryKey() {
33         return registryKey;
34     }
35
36     public void setRegistryKey(String registryKey) {
37         this.registryKey = registryKey;
38     }
39
40     public String getRegistryValue() {
41         return registryValue;
42     }
43
44     public void setRegistryValue(String registryValue) {
45         this.registryValue = registryValue;
46     }
47
48     public Date getUpdateTime() {
49         return updateTime;
50     }
51
52     public void setUpdateTime(Date updateTime) {
53         this.updateTime = updateTime;
54     }
55 }