package com.hdl.sdk.link.bean;
|
|
import java.io.Serializable;
|
|
import androidx.annotation.NonNull;
|
|
/**
|
* Created by Zoro
|
* Created on 2023/12/25
|
* description:
|
*/
|
public class OtaProgressGetBean implements Serializable {
|
private String oid;
|
private String module;
|
private String version;
|
private String step;
|
private String command;
|
private String remain_time;
|
private String desc;
|
|
public String getOid() {
|
return oid == null ? "" : oid;
|
}
|
|
public void setOid(@NonNull String oid) {
|
this.oid = oid;
|
}
|
|
public String getModule() {
|
return module == null ? "" : module;
|
}
|
|
public void setModule(@NonNull String module) {
|
this.module = module;
|
}
|
|
public String getVersion() {
|
return version == null ? "" : version;
|
}
|
|
public void setVersion(@NonNull String version) {
|
this.version = version;
|
}
|
|
public String getStep() {
|
return step == null ? "" : step;
|
}
|
|
public void setStep(@NonNull String step) {
|
this.step = step;
|
}
|
|
public String getCommand() {
|
return command == null ? "" : command;
|
}
|
|
public void setCommand(@NonNull String command) {
|
this.command = command;
|
}
|
|
public String getRemain_time() {
|
return remain_time == null ? "" : remain_time;
|
}
|
|
public void setRemain_time(@NonNull String remain_time) {
|
this.remain_time = remain_time;
|
}
|
|
public String getDesc() {
|
return desc == null ? "" : desc;
|
}
|
|
public void setDesc(@NonNull String desc) {
|
this.desc = desc;
|
}
|
}
|