管灌系统巡查员智能手机App
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
package com.dayu.pipirrapp.bean.net;
 
/**
 * InsectionResult -上传轨迹返回值
 *
 * @author zuoxiao
 * @version 1.0
 * @since 2024-12-04
 */
public class InsectionResult {
 
    String inspectId;//巡检id
    String inspectorId;//巡检员id
 
    public String getInspectId() {
        return inspectId;
    }
 
    public void setInspectId(String inspectId) {
        this.inspectId = inspectId;
    }
 
    public String getInspectorId() {
        return inspectorId;
    }
 
    public void setInspectorId(String inspectorId) {
        this.inspectorId = inspectorId;
    }
 
 
}