📄 read.java
字号:
/*
* Read.java
*
* Created on 2008年6月10日, 下午1:41
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package library;
/**
*
* @author Administrator
*/
public class Read {
private String code;
private String name;
private String sex;
private String type;
private String phone;
private String dept;
private String address;
/** Creates a new instance of Read */
public Read() {
}
public Read(String code,String name,String sex,String type,String phone,String dept,String address){
this.address=address;
this.code=code;
this.dept=dept;
this.name=name;
this.phone=phone;
this.sex=sex;
this.type=type;
}
public String getName(){
return name;
}
public String getCode(){
return code;
}
public String getSex(){
return sex;
}
public String getAddress(){
return address;
}
public String getPhone(){
return phone;
}
public String getType(){
return type;
}
public String getDept(){
return dept;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -