package com.hdl.photovoltaic.uni;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by hxb on 2023/6/28.
|
*/
|
public class UniToAndroidBean implements Serializable {
|
|
private String type;//功能类型
|
private Object data;//附加json数据
|
|
public Object getData() {
|
return data;
|
}
|
|
public void setData(Object data) {
|
this.data = data;
|
}
|
|
|
public String getType() {
|
return type == null ? "" : type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
}
|