supplier.java

来自「一个小型的医疗管理系统」· Java 代码 · 共 40 行

JAVA
40
字号
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 + =
减小字号Ctrl + -
显示快捷键?