郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
package com.gkhy.safePlatform.safeCheck.model.dto.req;
 
import java.io.Serializable;
import java.util.Date;
 
public class SafeCheckRegionReqDTO implements Serializable {
 
    private Long id;
 
    //巡检区域
    private String region;
 
    //巡检区域类型id
    private int regionTypeId;
 
    //区域所属的部门
    private Long regionDepartmentId;
 
    public Long getRegionDepartmentId() {
        return regionDepartmentId;
    }
 
    public void setRegionDepartmentId(Long regionDepartmentId) {
        this.regionDepartmentId = regionDepartmentId;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getRegion() {
        return region;
    }
 
    public void setRegion(String region) {
        this.region = region;
    }
 
    public int getRegionTypeId() {
        return regionTypeId;
    }
 
    public void setRegionTypeId(int regionTypeId) {
        this.regionTypeId = regionTypeId;
    }
}