UnitDTO.java 625 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * /**
  3. * Copyright (c) 2018 业主系统 All rights reserved.
  4. * <p>
  5. * https://www.yezhu.io
  6. * <p>
  7. * 版权所有,侵权必究!
  8. */
  9. package com.kioor.room.dto;
  10. import io.swagger.v3.oas.annotations.media.Schema;
  11. import lombok.Data;
  12. /**
  13. * 单元
  14. *
  15. * @author Mark sunlightcs@gmail.com
  16. */
  17. @Data
  18. @Schema(description = "单元")
  19. public class UnitDTO {
  20. @Schema(description = "id")
  21. private Long id;
  22. @Schema(description = "小区")
  23. private Long housingEstateId;
  24. @Schema(description = "楼栋")
  25. private Long buildingId;
  26. @Schema(description = "单元号")
  27. private String unitNum;
  28. }