package com.gkhy.safePlatform.safeCheck.model.dto.resp; import java.io.Serializable; public class SafeCheckRegionRespDTO implements Serializable { private Long id; //巡检区域 private String region; //巡检区域类型id private int regionTypeId; //区域所属的部门 private Long 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; } public Long getRegionDepartmentId() { return regionDepartmentId; } public void setRegionDepartmentId(Long regionDepartmentId) { this.regionDepartmentId = regionDepartmentId; } }