wjc
2023-06-28 14de918a79943e4961b09fa01ed320c6cad41f2e
HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/bean/LinkCreateLogicOutputStatusBean.java
New file
@@ -0,0 +1,50 @@
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 LinkCreateLogicOutputStatusBean implements Serializable {
    //⚠️ 这边需要添加其他字段  因为单纯这些不够用
    private String value;
    private String key;
    private String attrName;
    private String desc;
    public String getAttrName() {
        return attrName == null ? "" : attrName;
    }
    public void setAttrName(@NonNull String attrName) {
        this.attrName = attrName;
    }
    public String getDesc() {
        return desc == null ? "" : desc;
    }
    public void setDesc(@NonNull String desc) {
        this.desc = desc;
    }
    public String getKey() {
        return key == null ? "" : key;
    }
    public void setKey(@NonNull String key) {
        this.key = key;
    }
    public String getValue() {
        return value == null ? "" : value;
    }
    public void setValue(@NonNull String value) {
        this.value = value;
    }
}