fctom1215
2021-04-27 5a7a49f35b1e306e10fcdde45f7953bbe55b12e9
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
package safeluck.drive.evaluation.bean;
 
/**
 * DriveJudge
 * Created by lzw on 2020/12/28. 17:03:57
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public class RTKModuleInfo {
 
    /**
     * model : K726
     * status : 1  // 1 - ok, 0 - failure 严重问题
     */
 
    private String model;
    private int status;
 
    public String getModel() {
        return model;
    }
 
    public void setModel(String model) {
        this.model = model;
    }
 
    public int getStatus() {
        return status;
    }
 
    public void setStatus(int status) {
        this.status = status;
    }
}