diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/EpidemicRoomCodeDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/EpidemicRoomCodeDTO.java
new file mode 100644
index 0000000..cd98dcf
--- /dev/null
+++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/EpidemicRoomCodeDTO.java
@@ -0,0 +1,104 @@
+/**
+ * Copyright 2018 人人开源 https://www.renren.io
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+package com.elink.esua.epdc.dto.personroom.result;
+
+import com.elink.esua.epdc.dto.personroom.EpidemicUnitOwnerDTO;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.util.Date;
+import java.util.List;
+
+
+/**
+ * 楼栋,房屋信息
+ *
+ * @author zhy qu@elink-cn.com
+ * @since v1.0.0 2022-02-15
+ */
+@Data
+public class EpidemicRoomCodeDTO implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 主键
+ */
+ private Long id;
+
+ /**
+ * 小区.村ID
+ */
+ private Long buildingId;
+
+ /**
+ * 小区.村ID
+ */
+ private Long plotId;
+
+ /**
+ * 单元
+ */
+ private String unit;
+
+ /**
+ * 房间号
+ */
+ private String roomNo;
+
+ /**
+ * 楼栋名
+ */
+ private String buildingName;
+
+ /**
+ * 小区名
+ */
+ private String plotName;
+
+ /**
+ * 房屋编码
+ */
+ private String roomCode;
+
+ /**
+ * 房屋码(5位数字自增)
+ */
+ private Integer roomMaCode;
+
+ /**
+ * 房屋码(5位数字自增)
+ */
+ private Integer unitMaCode;
+
+ /**
+ * 房屋码(5位数字自增)
+ */
+ private Integer buildingMaCode;
+
+ /**
+ * 房屋码(5位数字自增)
+ */
+ private Integer plotMaCode;
+
+ /**
+ * 二维码
+ */
+ private String maUrl;
+}