| 12345678910111213141516171819 |
- package com.xjrsoft.module.student.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- @Data
- public class BaseStudentClassVo {
- /**
- * 用户ID(xjr_user)
- */
- @ApiModelProperty("用户ID(xjr_user)")
- private Long teacherId;
- /**
- * 名称
- */
- @ApiModelProperty("名称")
- private String name;
- }
|