DistributeResultClassVo.java 664 B

12345678910111213141516171819202122232425262728293031323334
  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. import java.util.List;
  6. /**
  7. * @title: 寝室床位分页列表出参
  8. * @Author dzx
  9. * @Date: 2023-12-27
  10. * @Version 1.0
  11. */
  12. @Data
  13. public class DistributeResultClassVo {
  14. /**
  15. * 主键编号
  16. */
  17. @ContentStyle(dataFormat = 49)
  18. @ApiModelProperty("班级id")
  19. private String classId;
  20. /**
  21. * 学生姓名
  22. */
  23. @ContentStyle(dataFormat = 49)
  24. @ApiModelProperty("学生姓名")
  25. private String className;
  26. private List<DistributeResultListVo> studentList;
  27. }