| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | 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;    }}
 |