123456789101112131415161718192021222324252627282930313233 |
- package com.sinosoft.em.baobiao.xianlutingyun.vo;
- public class ItemsBean{
- private String key;
- private String value;
- private String timeType;
- private String type;
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getTimeType() {
- return timeType;
- }
- public void setTimeType(String timeType) {
- this.timeType = timeType;
- }
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
-
- }
|