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

📄 stuinfo.java

📁 用户通过注册后进行登录
💻 JAVA
字号:
package com.svse.entity;

public class StuInfo {
	private String stuName;
	private String stuNo;
	private String stuSex;
	private int stuAge;
	private int stuSeat;
	private String stuAddress;
	
	public StuInfo() {
		super();
	}
	public StuInfo(String stuName, String stuNo, String stuSex, int stuAge,
			String stuAddress) {
		super();
		this.stuName = stuName;
		this.stuNo = stuNo;
		this.stuSex = stuSex;
		this.stuAge = stuAge;	
		this.stuAddress = stuAddress;
	}	
	public StuInfo(String stuName, String stuNo, String stuSex, int stuAge,
			int stuSeat, String stuAddress) {
		super();
		this.stuName = stuName;
		this.stuNo = stuNo;
		this.stuSex = stuSex;
		this.stuAge = stuAge;
		this.stuSeat = stuSeat;
		this.stuAddress = stuAddress;
	}
	public String getStuName() {
		return stuName;
	}
	public void setStuName(String stuName) {
		this.stuName = stuName;
	}
	public String getStuNo() {
		return stuNo;
	}
	public void setStuNo(String stuNo) {
		this.stuNo = stuNo;
	}
	public String getStuSex() {
		return stuSex;
	}
	public void setStuSex(String stuSex) {
		this.stuSex = stuSex;
	}
	public int getStuAge() {
		return stuAge;
	}
	public void setStuAge(int stuAge) {
		this.stuAge = stuAge;
	}
	public int getStuSeat() {
		return stuSeat;
	}
	public void setStuSeat(int stuSeat) {
		this.stuSeat = stuSeat;
	}
	public String getStuAddress() {
		return stuAddress;
	}
	public void setStuAddress(String stuAddress) {
		this.stuAddress = stuAddress;
	}
}

⌨️ 快捷键说明

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