wjc
2023-06-28 989b4cf5a84e898e9682f8d9723a8ba1ff20c23b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
    }
}