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

📄 authorinfo.java

📁 图书管理
💻 JAVA
字号:
package library;

public class AuthorInfo {
    
    private String authorNum;
    private String authorName;
    private String address;
    private String email;
    private String tel;

    public AuthorInfo() {
    }
    public AuthorInfo(String authorNum,String authorName,String address,String email,String tel){
        this.authorNum = authorNum;
        this.authorName = authorName;
        this.address = address;
        this.email = email;
        this.tel = tel;
    }
    public void setAuthorNum(String authorNum){
        this.authorNum = authorNum;
    }
    public String getAuthorNum(){
        return this.authorNum;
    }
    
    public void setAuthorName(String authorName){
        this.authorName = authorName;
    }
    public String getAuthorName(){
        return this.authorName;
    }
    
    public void setAddress(String address){
        this.address = address;
    }
    public String getAddress(){
        return this.address;
    }
    
    public void setEmail(String email){
        this.email = email;
    }
    public String getEmail(){
        return this.email;
    }
    
    public void setTel(String tel){
        this.tel = tel;
    }
    public String getTel(){
        return this.tel;
    }
}

⌨️ 快捷键说明

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