a174176cb1a2c5c6da71d7bb4ab9b42e88f38ca6.svn-base 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.xxl.job.admin.core.model;
  2. import java.util.Date;
  3. /**
  4. * Created by xuxueli on 16/9/30.
  5. */
  6. public class XxlJobRegistry {
  7. private int id;
  8. private String registryGroup;
  9. private String registryKey;
  10. private String registryValue;
  11. private Date updateTime;
  12. public int getId() {
  13. return id;
  14. }
  15. public void setId(int id) {
  16. this.id = id;
  17. }
  18. public String getRegistryGroup() {
  19. return registryGroup;
  20. }
  21. public void setRegistryGroup(String registryGroup) {
  22. this.registryGroup = registryGroup;
  23. }
  24. public String getRegistryKey() {
  25. return registryKey;
  26. }
  27. public void setRegistryKey(String registryKey) {
  28. this.registryKey = registryKey;
  29. }
  30. public String getRegistryValue() {
  31. return registryValue;
  32. }
  33. public void setRegistryValue(String registryValue) {
  34. this.registryValue = registryValue;
  35. }
  36. public Date getUpdateTime() {
  37. return updateTime;
  38. }
  39. public void setUpdateTime(Date updateTime) {
  40. this.updateTime = updateTime;
  41. }
  42. }