| 123456789101112131415161718192021222324252627282930313233343536 |
- package com.xcgl.middleware.qyg;
- public class SensorValue implements java.io.Serializable {
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- private boolean ret;
- private String code;
- private String value;
- private String errorcode;
- public boolean getRet() {
- return ret;
- }
- public void setRet(boolean ret) {
- this.ret = ret;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public String getErrorcode() {
- return errorcode;
- }
- public void setErrorcode(String errorcode) {
- this.errorcode = errorcode;
- }
- }
|