VersionEntity.java 547 B

123456789101112131415161718192021222324252627282930
  1. package com.wdkl.callingbed2.entity;
  2. public class VersionEntity {
  3. private String title;
  4. private String value;
  5. public VersionEntity() {
  6. }
  7. public VersionEntity(String title, String value) {
  8. this.title = title;
  9. this.value = value;
  10. }
  11. public String getTitle() {
  12. return title;
  13. }
  14. public void setTitle(String title) {
  15. this.title = title;
  16. }
  17. public String getValue() {
  18. return value;
  19. }
  20. public void setValue(String value) {
  21. this.value = value;
  22. }
  23. }