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

📄 student.java

📁 (JAVA环境
💻 JAVA
字号:
package train.basic.project.sm.model;

public class Student {
	private int no;

	private String name;

	private String phone;

	private String mobile;

	private String address;

	private String cert;

	public Student() {
	}

	public Student(int no) {
		this.no = no;
	}

	public Student(int no, String name, String phone, String mobile,
			String address, String cert) {
		this.no = no;
		this.name = name;
		this.phone = phone;
		this.mobile = mobile;
		this.address = address;
		this.cert = cert;
	}

	public Student(String name, String phone, String mobile, String address,
			String cert) {
		this.name = name;
		this.phone = phone;
		this.mobile = mobile;
		this.address = address;
		this.cert = cert;
	}

	public int getNo() {
		return no;
	}

	public void setNo(int no) {
		this.no = no;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getPhone() {
		return phone;
	}

	public void setPhone(String phone) {
		this.phone = phone;
	}

	public String getMobile() {
		return mobile;
	}

	public void setMobile(String mobile) {
		this.mobile = mobile;
	}

	public String getAddress() {
		return address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public String getCert() {
		return cert;
	}

	public void setCert(String cert) {
		this.cert = cert;
	}

}

⌨️ 快捷键说明

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