From 87f9b21e15c09444f617ac088d8d8a23528e867f Mon Sep 17 00:00:00 2001 From: zhangyuan Date: Mon, 20 Jun 2022 13:39:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=BF=E5=B1=8B=E7=A0=81dto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../result/EpidemicRoomCodeDTO.java | 104 ++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/EpidemicRoomCodeDTO.java 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; +}