| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.xjrsoft.module.student.vo;
- import com.alibaba.excel.annotation.write.style.ContentStyle;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- /**
- * @title: 移动端学生修改信息列表
- * @Author dzx
- * @Date: 2024年2月26日
- * @Version 1.0
- */
- @Data
- public class BaseStudentInfoPageVo {
- @ApiModelProperty("主键编号")
- private Long id;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("序号")
- private Integer sortCode;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("学生姓名")
- private String studentName;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("学号")
- private String studentId;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("本人电话")
- private String phone;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("监护人电话")
- private String guardianPhone;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("班主任名称")
- private String teacherName;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("班主任电话")
- private String teacherPhone;
- @ContentStyle(dataFormat = 49)
- @ApiModelProperty("班级名称")
- private String className;
- }
|