wjc
2023-06-28 14de918a79943e4961b09fa01ed320c6cad41f2e
HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/bean/LinkCreateLogicCycleBean.java
New file
@@ -0,0 +1,45 @@
package com.hdl.sdk.link.bean;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import androidx.annotation.NonNull;
/**
 * Created by Zoro
 * Created on 2022/2/16
 * description:
 */
public class LinkCreateLogicCycleBean implements Serializable {
    private String type;
    private String desc;
    private List<String> value = new ArrayList<>();
    public String getType() {
        return type == null ? "" : type;
    }
    public void setType(@NonNull String type) {
        this.type = type;
    }
    public String getDesc() {
        return desc == null ? "" : desc;
    }
    public void setDesc(@NonNull String desc) {
        this.desc = desc;
    }
    public List<String> getValue() {
        if (value == null) {
            return new ArrayList<>();
        }
        return value;
    }
    public void setValue(@NonNull List<String> value) {
        this.value = value;
    }
}