RoomClassExistentVo.java 428 B

123456789101112131415161718192021222324252627
  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: 2024年3月20日
  8. * @Version 1.0
  9. */
  10. @Data
  11. public class RoomClassExistentVo {
  12. /**
  13. * 主键编号
  14. */
  15. @ApiModelProperty("主键编号")
  16. private Long id;
  17. /**
  18. * 序号
  19. */
  20. @ApiModelProperty("班级ids")
  21. private String classIds;
  22. }