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;
|
}
|
}
|