wjc
2024-12-23 f753d8366041354da60b8096060f3ab5159e3880
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
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;
    }
}