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

📄 supplier.java

📁 一个小型的医疗管理系统
💻 JAVA
字号:
package bean;

public class Supplier {
	private String supplierid;
	private String name;
	private String address;
	private String tele;
	private String fax;


    public Supplier( String supplierid, String name, String address, String tele, String fax){
    	this.supplierid =supplierid;
    	this.name = name ;
    	this.address = address;
    	this.tele = tele;
    	this.fax = fax;
    }
    
    public String getSupplierid(){
    	return this.supplierid;
    }
    
    public String getName(){
    	return this.name ;
    }
    
    public String getAddress(){
    	return this.address ;
    }
    
    public String getTele(){
    	return this.tele ;
    }
    
    public String getFax(){
    	return this.fax ;
    }
    
}

⌨️ 快捷键说明

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