From 14de918a79943e4961b09fa01ed320c6cad41f2e Mon Sep 17 00:00:00 2001 From: wjc <1243177876@qq.com> Date: 星期三, 28 六月 2023 17:14:51 +0800 Subject: [PATCH] Revert "Revert "Merge branch 'hxb' into wjc"" --- HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/request/DeviceControlRequest.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/request/DeviceControlRequest.java b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/request/DeviceControlRequest.java new file mode 100644 index 0000000..5c4c800 --- /dev/null +++ b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/request/DeviceControlRequest.java @@ -0,0 +1,51 @@ +package com.hdl.sdk.link.core.bean.request; + +import java.io.Serializable; +import java.util.List; + +/** + * Created by Tong on 2021/10/8. + */ +public class DeviceControlRequest implements Serializable { + + private String sid; + private List<StatusBean> status; + + public String getSid() { + return sid; + } + + public void setSid(String sid) { + this.sid = sid; + } + + public List<StatusBean> getStatus() { + return status; + } + + public void setStatus(List<StatusBean> status) { + this.status = status; + } + + public static class StatusBean implements Serializable { + private String key; + private String value; + + 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; + } + } + +} -- Gitblit v1.8.0