RoomVo.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.xjrsoft.module.room.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. /**
  5. * @title: 寝室表单出参
  6. * @Author dzx
  7. * @Date: 2023-12-27
  8. * @Version 1.0
  9. */
  10. @Data
  11. public class RoomVo {
  12. /**
  13. * 主键编号
  14. */
  15. @ApiModelProperty("主键编号")
  16. private Long id;
  17. /**
  18. * 序号
  19. */
  20. @ApiModelProperty("序号")
  21. private Integer sortCode;
  22. /**
  23. * 楼栋(base_office_build)
  24. */
  25. @ApiModelProperty("楼栋(base_office_build)")
  26. private Long officeBuildId;
  27. /**
  28. * 楼层
  29. */
  30. @ApiModelProperty("楼层")
  31. private Integer floorNumber;
  32. /**
  33. * 寝室名称
  34. */
  35. @ApiModelProperty("寝室名称")
  36. private String roomName;
  37. /**
  38. * 入住身份(xjr_dictionary_item[check_in_status])
  39. */
  40. @ApiModelProperty("入住身份(xjr_dictionary_item[check_in_status])")
  41. private String checkInStatus;
  42. /**
  43. * 入住性别(xjr_dictionary_item[gender])
  44. */
  45. @ApiModelProperty("入住性别(xjr_dictionary_item[gender])")
  46. private String gender;
  47. /**
  48. * 床位数
  49. */
  50. @ApiModelProperty("床位数")
  51. private Integer bedCount;
  52. /**
  53. * 是否是混合寝室【一个寝室有多个班级的学生】(1:是 0:否)
  54. */
  55. @ApiModelProperty("是否是混合寝室【一个寝室有多个班级的学生】(1:是 0:否)")
  56. private Integer isMax;
  57. /**
  58. * 备注
  59. */
  60. @ApiModelProperty("备注")
  61. private String remark;
  62. }