| 123456789101112131415161718192021222324252627 |
- package com.xjrsoft.module.room.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @title: 寝室表单出参
- * @Author dzx
- * @Date: 2024年3月20日
- * @Version 1.0
- */
- @Data
- public class RoomClassExistentVo {
- /**
- * 主键编号
- */
- @ApiModelProperty("主键编号")
- private Long id;
- /**
- * 序号
- */
- @ApiModelProperty("班级ids")
- private String classIds;
- }
|