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

📄 people.java

📁 这个网上商城系统项目是我之前发过类似的一个大的整合
💻 JAVA
字号:
package javabean;

import java.util.Date;

public class People {
	private int id;
	private String userName;
	private int age;
	private Date birthDay;
	private double sal;
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getUserName() {
		return userName;
	}
	public void setUserName(String userName) {
		this.userName = userName;
	}
	public People(int id, String userName, int age) {
		this.id = id;
		this.userName = userName;
		this.age = age;
	}
	public People() {
	}
	public Date getBirthDay() {
		return birthDay;
	}
	public void setBirthDay(Date birthDay) {
		this.birthDay = birthDay;
	}
	public double getSal() {
		return sal;
	}
	public void setSal(double sal) {
		this.sal = sal;
	}
	public People(int id, String userName, int age, Date birthDay, double sal) {
		this.id = id;
		this.userName = userName;
		this.age = age;
		this.birthDay = birthDay;
		this.sal = sal;
	}
	
}

⌨️ 快捷键说明

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