DeviceDTO.java 896 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package com.lstznkj.groundstation.DTO.ui;
  2. public class DeviceDTO {
  3. private int id;
  4. private String name;
  5. private String remark;
  6. private int fatherId;
  7. private int oldFatherId;
  8. public int getId() {
  9. return id;
  10. }
  11. public void setId(int id) {
  12. this.id = id;
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. public void setName(String name) {
  18. this.name = name;
  19. }
  20. public String getRemark() {
  21. return remark;
  22. }
  23. public void setRemark(String remark) {
  24. this.remark = remark;
  25. }
  26. public int getFatherId() {
  27. return fatherId;
  28. }
  29. public void setFatherId(int fatherId) {
  30. this.fatherId = fatherId;
  31. }
  32. public int getOldFatherId() {
  33. return oldFatherId;
  34. }
  35. public void setOldFatherId(int oldFatherId) {
  36. this.oldFatherId = oldFatherId;
  37. }
  38. }