| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package com.xjrsoft.module.student.vo;
- import com.alibaba.excel.annotation.ExcelProperty;
- import com.alibaba.excel.annotation.write.style.ContentStyle;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.math.BigDecimal;
- /**
- * @title: 新生维护信息分页列表出参
- * @Author dzx
- * @Date: 2024-06-27
- * @Version 1.0
- */
- @Data
- public class BaseNewStudentExcelVo {
- /**
- * 毕业学校
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("毕业学校")
- @ApiModelProperty("毕业学校")
- private String graduateSchool;
- /**
- * 学生姓名
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("学生姓名")
- @ApiModelProperty("学生姓名")
- private String name;
- /**
- * 性别
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("性别")
- @ApiModelProperty("性别")
- private String gender;
- /**
- * 身份证号
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("身份证号")
- @ApiModelProperty("身份证号")
- private String credentialNumber;
- /**
- * 身高
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("身高")
- @ApiModelProperty("身高")
- private BigDecimal height;
- /**
- * 体重
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("体重")
- @ApiModelProperty("体重")
- private BigDecimal weight;
- /**
- * 成绩
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("成绩")
- @ApiModelProperty("成绩")
- private BigDecimal score;
- /**
- * 毕业班级
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("毕业班级")
- @ApiModelProperty("毕业班级")
- private String graduateClass;
- /**
- * 学生来源
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("学生来源")
- @ApiModelProperty("学生来源")
- private String source;
- /**
- * 住宿类型
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("住宿类型")
- @ApiModelProperty("住宿类型")
- private String stduyStatus;
- /**
- * 手机号
- */
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("手机号")
- @ApiModelProperty("手机号")
- private String mobile;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("第一志愿")
- @ApiModelProperty("第一志愿")
- private String firstAmbition;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("第二志愿")
- @ApiModelProperty("第二志愿")
- private String secondAmbition;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("家庭电话")
- @ApiModelProperty("是否可调配")
- private String isAdjust;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("家庭电话")
- @ApiModelProperty("家庭电话")
- private String familyMobile;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("家庭地址")
- @ApiModelProperty("家庭地址")
- private String familyAddress;
- @ContentStyle(dataFormat = 49)
- @ExcelProperty("错误信息")
- @ApiModelProperty("错误信息")
- private String errorMsg;
- }
|