/** * Copyright © 2025 eSunny Info. Tech Ltd. All rights reserved. * * 功能描述: * @Package: com.chinasofti.model.view * @author: 李洪涛 * @date: 2025年5月3日 上午10:55:40 */ package com.chinasofti.model.view; /** * Copyright: Copyright (c) 2025 chiansofti * * @ClassName: StudentView.java * @Description: 学生类页面数据 * * @version: v1.0.0 * @author: 李洪涛 * @date: 2025年5月3日 上午10:55:40 * * Modification History: * Date Author Version Description *---------------------------------------------------------* * 2025年5月3日 李洪涛 v1.0.0 修改原因 */ public class StudentView { private Long userId;//用户主键 private Long studentId;//主键 private Long clazzId;//班级主键 private String name;//姓名 private String sex;//性别 private String userName;//用户名 private String phone;//联系方式 private Long number;//学号 private String birthday;//出生日期 private String major;//专业 private String honor;//个人荣誉 private int scoreNow;//当前学分 public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } public Long getStudentId() { return studentId; } public void setStudentId(Long studentId) { this.studentId = studentId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public Long getNumber() { return number; } public void setNumber(Long number) { this.number = number; } public String getBirthday() { return birthday; } public void setBirthday(String birthday) { this.birthday = birthday; } public String getMajor() { return major; } public void setMajor(String major) { this.major = major; } public String getHonor() { return honor; } public void setHonor(String honor) { this.honor = honor; } public int getScoreNow() { return scoreNow; } public void setScoreNow(int scoreNow) { this.scoreNow = scoreNow; } public Long getClazzId() { return clazzId; } public void setClazzId(Long clazzId) { this.clazzId = clazzId; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } }