DistributeRoomBedPageVo.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. /**
  7. * @title: 寝室床位分页列表出参
  8. * @Author dzx
  9. * @Date: 2023-12-27
  10. * @Version 1.0
  11. */
  12. @Data
  13. public class DistributeRoomBedPageVo {
  14. /**
  15. * 主键编号
  16. */
  17. @ContentStyle(dataFormat = 49)
  18. @ExcelProperty("主键编号")
  19. @ApiModelProperty("主键编号")
  20. private String id;
  21. @ContentStyle(dataFormat = 49)
  22. @ExcelProperty("序号")
  23. @ApiModelProperty("序号")
  24. private Integer sortCode;
  25. /**
  26. * 楼栋名称
  27. */
  28. @ContentStyle(dataFormat = 49)
  29. @ExcelProperty("楼栋")
  30. @ApiModelProperty("楼栋")
  31. private String buildName;
  32. @ContentStyle(dataFormat = 49)
  33. @ExcelProperty("楼层")
  34. @ApiModelProperty("楼层")
  35. private Integer floorNumber;
  36. @ContentStyle(dataFormat = 49)
  37. @ExcelProperty("寝室号")
  38. @ApiModelProperty("寝室号")
  39. private String roomName;
  40. @ContentStyle(dataFormat = 49)
  41. @ExcelProperty("入住性别")
  42. @ApiModelProperty("入住性别")
  43. private String genderCn;
  44. @ContentStyle(dataFormat = 49)
  45. @ExcelProperty("入住身份")
  46. @ApiModelProperty("入住身份")
  47. private String checkInStatusCn;
  48. @ContentStyle(dataFormat = 49)
  49. @ExcelProperty("入住班级")
  50. @ApiModelProperty("入住班级")
  51. private String intoClass;
  52. @ContentStyle(dataFormat = 49)
  53. @ExcelProperty("床位数")
  54. @ApiModelProperty("床位数")
  55. private Integer bedCount;
  56. @ContentStyle(dataFormat = 49)
  57. @ExcelProperty("已入住人数")
  58. @ApiModelProperty("已入住人数")
  59. private Integer intoCount;
  60. }