123456789101112131415161718192021222324252627282930 |
- package com.wdkl.callingbed2.entity;
- public class VersionEntity {
- private String title;
- private String value;
- public VersionEntity() {
- }
- public VersionEntity(String title, String value) {
- this.title = title;
- this.value = value;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- }
|