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; } }