| 12345678910111213141516171819 |
- package com.xjrsoft.module.room.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @author dzx
- * @date 2024/1/15
- */
- @Data
- public class ClassStudentCountVo {
- @ApiModelProperty("班级id")
- private String classId;
- @ApiModelProperty("学生人数")
- private Integer studentCount;
- }
|