AdjustBedStudentPageVo.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.xjrsoft.module.room.vo;
  2. import com.alibaba.excel.annotation.write.style.ContentStyle;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. /**
  6. * @title: 寝室床位分页列表出参
  7. * @Author dzx
  8. * @Date: 2023-12-27
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class AdjustBedStudentPageVo {
  13. @ContentStyle(dataFormat = 49)
  14. @ApiModelProperty("床位id")
  15. private String id;
  16. @ContentStyle(dataFormat = 49)
  17. @ApiModelProperty("楼栋名称")
  18. private String buildName;
  19. @ContentStyle(dataFormat = 49)
  20. @ApiModelProperty("寝室名称")
  21. private String roomName;
  22. @ContentStyle(dataFormat = 49)
  23. @ApiModelProperty("入住性别")
  24. private String genderCn;
  25. @ContentStyle(dataFormat = 49)
  26. @ApiModelProperty("床位")
  27. private String bedNumber;
  28. @ContentStyle(dataFormat = 49)
  29. @ApiModelProperty("学生名称")
  30. private String studentName;
  31. @ContentStyle(dataFormat = 49)
  32. @ApiModelProperty("学生id(null即为未设置寝室长,非空即为设置了寝室长)")
  33. private String studentUserId;
  34. @ContentStyle(dataFormat = 49)
  35. @ApiModelProperty("寝室长id(null即为未设置寝室长,非空即为设置了寝室长)")
  36. private String studentAppointId;
  37. @ContentStyle(dataFormat = 49)
  38. @ApiModelProperty("是否是混合寝室【一个寝室有多个班级的学生】(1:是 0:否)")
  39. private Integer isMax;
  40. @ContentStyle(dataFormat = 49)
  41. @ApiModelProperty("寝室id")
  42. private String roomId;
  43. }