⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xuesheng.java

📁 JSP开发的学生信息管理系统
💻 JAVA
字号:
package xuesheng;

import java.io.Serializable;
import java.io.UnsupportedEncodingException;

public class Xuesheng implements Serializable {
    private String speciality;
    private String stuClass;
    private String studentId;
    private String stuName;
    private String stuSex;
    private String birthDate;
    private String jiguan;
    private String shenfenId;
    private String jiatingTelphone;
    private String stuNation;
    private String xueLi;
    private String photo;
    private String image;
    private String dormId;
    private String stuSource;
    private String zhenzmmao;
    private String jiatingAddress;
    private String stuTelphone;
    private String postID;
    private String beizu;
    private String password;
    private String flag;
    public String getSpeciality() {
        return speciality;
    }

    public String getStuClass() {
        return stuClass;
    }

    public String getStudentId() {
        return studentId;
    }

    public String getStuName() {
        return stuName;
    }

    public String getStuSex() {
        return stuSex;
    }

    public String getBirthDate() {
        return birthDate;
    }

    public String getJiguan() {
        return jiguan;
    }

    public String getShenfenId() {
        return shenfenId;
    }

    public String getJiatingTelphone() {
        return jiatingTelphone;
    }

    public String getStuNation() {
        return stuNation;
    }

    public String getXueLi() {
        return xueLi;
    }

    public String getPhoto() {
        return photo;
    }

    public String getImage() {
        return image;
    }

    public String getDormId() {
        return dormId;
    }

    public String getStuSource() {
        return stuSource;
    }

    public String getZhenzmmao() {
        return zhenzmmao;
    }

    public String getJiatingAddress() {
        return jiatingAddress;
    }

    public String getStuTelphone() {
        return stuTelphone;
    }

    public String getPostID() {
        return postID;
    }

    public String getBeizu() {
        return beizu;
    }

    public String getPassword() {
        return password;
    }

    public String getFlag() {
        return flag;
    }

    //set方法

    public void setSpeciality(String speciality) throws
            UnsupportedEncodingException {
        this.speciality = new String(speciality.getBytes("iso-8859-1")).trim();
    }

    public void setStuClass(String stuClass) throws
            UnsupportedEncodingException {
        this.stuClass = new String(stuClass.getBytes("iso-8859-1")).trim();
    }

    public void setStudentId(String studentId) {
        this.studentId = studentId.trim();
    }

    public void setStuName(String stuName) throws UnsupportedEncodingException {
        this.stuName = new String(stuName.getBytes("iso-8859-1")).trim();
    }

    public void setStuSex(String stuSex) throws UnsupportedEncodingException {
        this.stuSex = new String(stuSex.getBytes("iso-8859-1")).trim();
    }

    public void setBirthDate(String birthDate) {
        this.birthDate = birthDate;
    }

    public void setJiguan(String jiguan) throws UnsupportedEncodingException {
        this.jiguan = new String(jiguan.getBytes("iso-8859-1")).trim();
    }

    public void setShenfenId(String shenfenId) throws
            UnsupportedEncodingException {
        this.shenfenId = new String(shenfenId.getBytes("iso-8859-1")).trim();
    }

    public void setJiatingTelphone(String jiatingTelphone) throws
            UnsupportedEncodingException {
        this.jiatingTelphone = new String(jiatingTelphone.getBytes("iso-8859-1")).
                               trim();
    }

    public void setStuNation(String stuNation) throws
            UnsupportedEncodingException {
        this.stuNation = new String(stuNation.getBytes("iso-8859-1")).trim();
    }

    public void setXueLi(String xueLi) throws UnsupportedEncodingException {
        this.xueLi = new String(xueLi.getBytes("iso-8859-1")).trim();
    }

    public void setPhoto(String photo) throws UnsupportedEncodingException {
        this.photo = new String(photo.getBytes("iso-8859-1")).trim();
    }

    public void setImage(String image) throws UnsupportedEncodingException {
        this.image = new String(image.getBytes("iso-8859-1")).trim();
    }

    public void setDormId(String dormId) throws UnsupportedEncodingException {
        this.dormId = new String(dormId.getBytes("iso-8859-1")).trim();
    }

    public void setStuSource(String stuSource) throws
            UnsupportedEncodingException {
        this.stuSource = new String(stuSource.getBytes("iso-8859-1")).trim();
    }

    public void setZhenzmmao(String zhenzmmao) throws
            UnsupportedEncodingException {
        this.zhenzmmao = new String(zhenzmmao.getBytes("iso-8859-1")).trim();
    }

    public void setJiatingAddress(String jiatingAddress) throws
            UnsupportedEncodingException {
        this.jiatingAddress = new String(jiatingAddress.getBytes("iso-8859-1")).
                              trim();
    }

    public void setStuTelphone(String stuTelphone) throws
            UnsupportedEncodingException {
        this.stuTelphone = new String(stuTelphone.getBytes("iso-8859-1")).trim();
    }

    public void setPostID(String postID) throws UnsupportedEncodingException {
        this.postID = new String(postID.getBytes("iso-8859-1")).trim();
    }

    public void setBeizu(String beizu) throws UnsupportedEncodingException {
        this.beizu = new String(beizu.getBytes("iso-8859-1")).trim();
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public void setFlag(String flag) {
        this.flag = flag;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -