HeadTeaRoomCadreAppointPageVo.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.xjrsoft.module.room.vo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.alibaba.excel.annotation.write.style.ContentStyle;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import java.util.List;
  7. /**
  8. * @title: 寝室长任命分页列表出参
  9. * @Author dzx
  10. * @Date: 2023-12-30
  11. * @Version 1.0
  12. */
  13. @Data
  14. public class HeadTeaRoomCadreAppointPageVo {
  15. /**
  16. * 寝室编号(room)
  17. */
  18. @ApiModelProperty("寝室编号(room)")
  19. private String roomId;
  20. /**
  21. * 入住性别(xjr_dictionary_item[gender])
  22. */
  23. @ContentStyle(dataFormat = 49)
  24. @ExcelProperty("入住性别")
  25. @ApiModelProperty("入住性别")
  26. private String genderCn;
  27. /**
  28. * 寝室名称
  29. */
  30. @ContentStyle(dataFormat = 49)
  31. @ExcelProperty("寝室名称")
  32. @ApiModelProperty("寝室名称")
  33. private String roomName;
  34. /**
  35. * 是否是混合寝室【一个寝室有多个班级的学生】(1:是 0:否)
  36. */
  37. @ContentStyle(dataFormat = 49)
  38. @ExcelProperty("是否是混合寝室【一个寝室有多个班级的学生】(1:是 0:否)")
  39. @ApiModelProperty("是否是混合寝室【一个寝室有多个班级的学生】(1:是 0:否)")
  40. private Integer isMax;
  41. /**
  42. * 寝室床位信息
  43. */
  44. @ApiModelProperty("寝室床位信息")
  45. private List<AppointPageRoomBedVo> roomBedList;
  46. }