123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * /**
- * Copyright (c) 2018 业主系统 All rights reserved.
- * <p>
- * https://www.yezhu.io
- * <p>
- * 版权所有,侵权必究!
- */
- package com.kioor.room.dto;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- /**
- * 单元
- *
- * @author Mark sunlightcs@gmail.com
- */
- @Data
- @Schema(description = "单元")
- public class UnitDTO {
- @Schema(description = "id")
- private Long id;
- @Schema(description = "小区")
- private Long housingEstateId;
- @Schema(description = "楼栋")
- private Long buildingId;
- @Schema(description = "单元号")
- private String unitNum;
- }
|