From 99bc815e07e39354f51421b77f4012ffd35594d8 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 28 六月 2023 18:03:00 +0800
Subject: [PATCH] 2023年06月28日18:02:58
---
HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/bean/LinkCreateLogicInputConditionBean.java | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/bean/LinkCreateLogicInputConditionBean.java b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/bean/LinkCreateLogicInputConditionBean.java
new file mode 100644
index 0000000..800a6f2
--- /dev/null
+++ b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/bean/LinkCreateLogicInputConditionBean.java
@@ -0,0 +1,49 @@
+package com.hdl.sdk.link.bean;
+
+import java.io.Serializable;
+
+import androidx.annotation.NonNull;
+
+/**
+ * Created by Zoro
+ * Created on 2022/2/16
+ * description:
+ */
+public class LinkCreateLogicInputConditionBean implements Serializable {
+ private String key;
+ private String comparator;
+ private String data_type;
+ private String value;
+
+ public String getKey() {
+ return key == null ? "" : key;
+ }
+
+ public void setKey(@NonNull String key) {
+ this.key = key;
+ }
+
+ public String getComparator() {
+ return comparator == null ? "" : comparator;
+ }
+
+ public void setComparator(@NonNull String comparator) {
+ this.comparator = comparator;
+ }
+
+ public String getData_type() {
+ return data_type == null ? "" : data_type;
+ }
+
+ public void setData_type(@NonNull String data_type) {
+ this.data_type = data_type;
+ }
+
+ public String getValue() {
+ return value == null ? "" : value;
+ }
+
+ public void setValue(@NonNull String value) {
+ this.value = value;
+ }
+}
\ No newline at end of file
--
Gitblit v1.8.0