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