java110
2021-06-16 755262ba9a1a3c0573a0e910bbd0a353e9e2a2c5
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
package com.java110.po.inspection;
 
import java.io.Serializable;
 
/**
 * @ClassName InspectionRoutePointRelPo
 * @Description TODO
 * @Author wuxw
 * @Date 2020/5/28 20:58
 * @Version 1.0
 * add by wuxw 2020/5/28
 **/
public class InspectionRoutePointRelPo implements Serializable {
 
    private String irpRelId;
 
    private String inspectionRouteId;
    private String inspectionId;
    private String communityId;
 
    public String getIrpRelId() {
        return irpRelId;
    }
 
    public void setIrpRelId(String irpRelId) {
        this.irpRelId = irpRelId;
    }
 
    public String getInspectionRouteId() {
        return inspectionRouteId;
    }
 
    public void setInspectionRouteId(String inspectionRouteId) {
        this.inspectionRouteId = inspectionRouteId;
    }
 
    public String getInspectionId() {
        return inspectionId;
    }
 
    public void setInspectionId(String inspectionId) {
        this.inspectionId = inspectionId;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
}