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