wjc
2025-01-07 90d5f028ccdaaaf64286f9d632cb335a4d0544b9
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
46
47
48
49
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;
    }
}