📄 supplier.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 + -