wjc
2025-04-24 8a249407f9a91b696b88d74eea0fbf789d0ee6a4
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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;
    }
}