7 changed files with 127 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||
package com.elink.esua.epdc.dto.personroom.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: epmet-cloud |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2022-06-01 13:44 |
|||
**/ |
|||
@Data |
|||
public class HouseQrcodeFormDTO implements Serializable { |
|||
|
|||
@NotNull(message = "id不可为空") |
|||
private String id; |
|||
} |
@ -0,0 +1,73 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* 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. |
|||
* <p> |
|||
* 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. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
package com.elink.esua.epdc.dto.personroom.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author zhy |
|||
* @date 2021/7/28 9:28 |
|||
*/ |
|||
@Data |
|||
public class EpidemicUnitInfoResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 单元ID |
|||
*/ |
|||
private Long unitId; |
|||
|
|||
/** |
|||
* 单元 |
|||
*/ |
|||
private String unit; |
|||
|
|||
/** |
|||
* 单元 |
|||
*/ |
|||
private String roomNo; |
|||
|
|||
/** |
|||
* 栋主键 |
|||
*/ |
|||
private Long buildingId; |
|||
|
|||
/** |
|||
* 小区/村ID |
|||
*/ |
|||
private Long plotId; |
|||
|
|||
/** |
|||
* 小区.村 |
|||
*/ |
|||
private String plotName; |
|||
|
|||
/** |
|||
* 楼栋名称 |
|||
*/ |
|||
private String buildingName; |
|||
|
|||
/** |
|||
* 房屋码(5位数字自增) |
|||
*/ |
|||
private Integer roomMaCode; |
|||
|
|||
} |
Loading…
Reference in new issue