java110
2021-08-19 6e8c95d31d85b53857e4e3ce12ea303eb0ea42eb
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
package com.java110.vo.api.inspectionRoute;
 
import java.io.Serializable;
import java.util.Date;
 
public class ApiInspectionRouteDataVo implements Serializable {
 
    private String inspectionRouteId;
    private String routeName;
    private String seq;
    private String remark;
 
    private String[] InspectionRouteIds;
 
    private String createTime;
 
    public String getInspectionRouteId() {
        return inspectionRouteId;
    }
 
    public void setInspectionRouteId(String inspectionRouteId) {
        this.inspectionRouteId = inspectionRouteId;
    }
 
    public String getRouteName() {
        return routeName;
    }
 
    public void setRouteName(String routeName) {
        this.routeName = routeName;
    }
 
    public String getSeq() {
        return seq;
    }
 
    public void setSeq(String seq) {
        this.seq = seq;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String[] getInspectionRouteIds() {
        return InspectionRouteIds;
    }
 
    public void setInspectionRouteIds(String[] inspectionRouteIds) {
        InspectionRouteIds = inspectionRouteIds;
    }
}