|
@@ -0,0 +1,103 @@
|
|
|
+package com.schoolinout.api.domain.vo;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author sakura
|
|
|
+ * @date 2024/1/11 15:15:06 Thu
|
|
|
+ */
|
|
|
+public class Api_StudentListVo {
|
|
|
+
|
|
|
+ private Long studentId;
|
|
|
+ private Long parentId;
|
|
|
+ private Long schoolId;
|
|
|
+ private Long classId;
|
|
|
+
|
|
|
+ private String studentGender;
|
|
|
+ private String studentName;
|
|
|
+ private String studentNum;
|
|
|
+ private String studentPic;
|
|
|
+
|
|
|
+
|
|
|
+ private String schoolName;
|
|
|
+ private String className;
|
|
|
+
|
|
|
+ public String getStudentGender() {
|
|
|
+ return studentGender;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentGender(String studentGender) {
|
|
|
+ this.studentGender = studentGender;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getStudentId() {
|
|
|
+ return studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentId(Long studentId) {
|
|
|
+ this.studentId = studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getParentId() {
|
|
|
+ return parentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setParentId(Long parentId) {
|
|
|
+ this.parentId = parentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getSchoolId() {
|
|
|
+ return schoolId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSchoolId(Long schoolId) {
|
|
|
+ this.schoolId = schoolId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getClassId() {
|
|
|
+ return classId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClassId(Long classId) {
|
|
|
+ this.classId = classId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStudentName() {
|
|
|
+ return studentName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentName(String studentName) {
|
|
|
+ this.studentName = studentName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStudentNum() {
|
|
|
+ return studentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentNum(String studentNum) {
|
|
|
+ this.studentNum = studentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStudentPic() {
|
|
|
+ return studentPic;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentPic(String studentPic) {
|
|
|
+ this.studentPic = studentPic;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public String getSchoolName() {
|
|
|
+ return schoolName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSchoolName(String schoolName) {
|
|
|
+ this.schoolName = schoolName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getClassName() {
|
|
|
+ return className;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClassName(String className) {
|
|
|
+ this.className = className;
|
|
|
+ }
|
|
|
+}
|