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

📄 infobean.java

📁 基于java的医院门诊管理系统
💻 JAVA
字号:
package crqs.infobeans;

import java.io.Serializable;

public class InfoBean implements Serializable {
	protected String UserName;	//登陆名
	protected String Password;	//密码
	protected String Mailbox;	//电子邮箱
	protected String Phone;	//电话号码
	protected int Age;		//年龄
	protected char Gender;	//性别

    public InfoBean() {
    }
    
    public void setUserName(String Name){
    	this.UserName = Name;
    }
    public String getUserName(){
    	return this.UserName;
    }
    
    public void setPassword(String password){
    	this.Password = password;
    }
    public String getPassword(){
    	return this.Password;
    }
    
    public void setMailBox(String mailbox){
    	this.Mailbox = mailbox;
    }
    public String getMailBox(){
    	return this.Mailbox;
    }
    
    public void setPhone(String phone){
    	this.Phone = phone;
    }
    public String getPhone(){
    	return this.Phone;
    }
    
    public void setAge(int age){
    	this.Age = age;
    }
    public int getAge(){
    	return this.Age;
    }
    
    public void setGender(char gender){
    	this.Gender = gender;
    }
    public char getGender(){
    	return this.Gender;
    }
}

⌨️ 快捷键说明

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