管灌系统巡查员智能手机App
zuoxiao
2024-12-03 9c2908d8a110eaa28ec63a877291aeea61ee4e60
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
package com.dayu.pipirrapp.bean.db;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
/**
 * InspectionBean -巡检记录开始时间和结束时间相关信息
 *
 * @author zuoxiao
 * @version 1.0
 * @since 2024-11-29
 */
@Entity
public class InspectionBean {
    @PrimaryKey(autoGenerate = true)
    public long id;
    String inspectId;//巡检ID
    String mInspectId;//本地数据库巡检ID
    String startTime;//开始巡检时间
    String stopTime;//停止巡检时间
 
    public String getmInspectId() {
        return mInspectId;
    }
 
    public void setmInspectId(String mInspectId) {
        this.mInspectId = mInspectId;
    }
 
    public String getInspectId() {
        return inspectId;
    }
 
    public void setInspectId(String inspectId) {
        this.inspectId = inspectId;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getStopTime() {
        return stopTime;
    }
 
    public void setStopTime(String stopTime) {
        this.stopTime = stopTime;
    }
 
}