From 981616e52d6b631a7c8e96ba76d0315ff82d5697 Mon Sep 17 00:00:00 2001 From: mirage <1127314491@qq.com> Date: Tue, 24 Feb 2026 15:28:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mdd/admin/vo/StudentInfoListedVo.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/server/like-admin/src/main/java/com/mdd/admin/vo/StudentInfoListedVo.java b/server/like-admin/src/main/java/com/mdd/admin/vo/StudentInfoListedVo.java index 6de6486f..b87dbb08 100644 --- a/server/like-admin/src/main/java/com/mdd/admin/vo/StudentInfoListedVo.java +++ b/server/like-admin/src/main/java/com/mdd/admin/vo/StudentInfoListedVo.java @@ -18,6 +18,24 @@ public class StudentInfoListedVo implements Serializable { @ApiModelProperty(value = "主键") private Long studentId; + @ApiModelProperty(value = "性别:0-女 1-男") + private Integer gender; + + @ApiModelProperty(value = "身份证号") + private String idCard; + + @ApiModelProperty(value = "毕业学校") + private String previousSchool; + + @ApiModelProperty(value = "身高(cm)") + private BigDecimal height; + + @ApiModelProperty(value = "体重(kg)") + private BigDecimal weight; + + @ApiModelProperty(value = "鞋码") + private Integer shoeSize; + @ApiModelProperty(value = "姓名") private String name;