|
|
@@ -4,6 +4,8 @@ import com.alibaba.excel.annotation.write.style.ContentStyle;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* @title: 移动端学生修改信息列表
|
|
|
* @Author dzx
|
|
|
@@ -50,14 +52,60 @@ public class BaseStudentInfoPageVo {
|
|
|
private String className;
|
|
|
|
|
|
/**
|
|
|
- * 性别
|
|
|
+ * 学习形式
|
|
|
*/
|
|
|
- @ApiModelProperty("性别")
|
|
|
- private String genderCn;
|
|
|
-
|
|
|
+ @ApiModelProperty("学习形式")
|
|
|
+ private String rollModality;
|
|
|
+ /**
|
|
|
+ * 学习形式
|
|
|
+ */
|
|
|
+ @ApiModelProperty("学习形式")
|
|
|
+ private String rollModalityCode;
|
|
|
+ /**
|
|
|
+ * 学籍状态(xjr_dictionary_item[archives_status])
|
|
|
+ */
|
|
|
+ @ApiModelProperty("学籍状态(xjr_dictionary_item[archives_status])")
|
|
|
+ private String archivesStatus;
|
|
|
+ /**
|
|
|
+ * 学籍状态(xjr_dictionary_item[archives_status])
|
|
|
+ */
|
|
|
+ @ApiModelProperty("学籍状态(xjr_dictionary_item[archives_status])")
|
|
|
+ private String archivesStatusCode;
|
|
|
/**
|
|
|
* 就读方式(xjr_dictionary_item[stduy_status])
|
|
|
*/
|
|
|
@ApiModelProperty("就读方式(xjr_dictionary_item[stduy_status])")
|
|
|
private String stduyStatus;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 就读方式(xjr_dictionary_item[stduy_status])
|
|
|
+ */
|
|
|
+ @ApiModelProperty("就读方式(xjr_dictionary_item[stduy_status])")
|
|
|
+ private String stduyStatusCode;
|
|
|
+
|
|
|
+ @ApiModelProperty("床位信息")
|
|
|
+ private String bedInfo;
|
|
|
+
|
|
|
+ @ApiModelProperty("头像")
|
|
|
+ private String avatar;
|
|
|
+
|
|
|
+ @ApiModelProperty("出生日期")
|
|
|
+ private Date birthDate;
|
|
|
+
|
|
|
+ @ApiModelProperty("民族")
|
|
|
+ private String nation;
|
|
|
+
|
|
|
+ private String majorSetName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 性别
|
|
|
+ */
|
|
|
+ @ApiModelProperty("性别")
|
|
|
+ private String gender;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 性别中文
|
|
|
+ */
|
|
|
+ @ApiModelProperty("性别中文")
|
|
|
+ private String genderCn;
|
|
|
}
|