📄 supplyinfo.java
字号:
package com.logistic.model;
public class SupplyInfo {
private String supplyid;
private String supplyname;
private String supplycharge;
private String supplyaddress;
private String supplyphone;
private String supplymobile;
private String supplyfax;
private String supplyemail;
private String supplyhttp;
public SupplyInfo(){
}
public SupplyInfo(String id,String name,String charge,String address,String phone,String mobile,String fax,String email,String http){
this.supplyid=id;
this.supplyname=name;
this.supplycharge=charge;
this.supplyaddress=address;
this.supplyphone=phone;
this.supplymobile=mobile;
this.supplyfax=fax;
this.supplyemail=email;
this.supplyhttp=http;
}
public String getSupplyaddress() {
return supplyaddress;
}
public void setSupplyaddress(String supplyaddress) {
this.supplyaddress = supplyaddress;
}
public String getSupplycharge() {
return supplycharge;
}
public void setSupplycharge(String supplycharge) {
this.supplycharge = supplycharge;
}
public String getSupplyemail() {
return supplyemail;
}
public void setSupplyemail(String supplyemail) {
this.supplyemail = supplyemail;
}
public String getSupplyfax() {
return supplyfax;
}
public void setSupplyfax(String supplyfax) {
this.supplyfax = supplyfax;
}
public String getSupplyhttp() {
return supplyhttp;
}
public void setSupplyhttp(String supplyhttp) {
this.supplyhttp = supplyhttp;
}
public String getSupplyid() {
return supplyid;
}
public void setSupplyid(String supplyid) {
this.supplyid = supplyid;
}
public String getSupplymobile() {
return supplymobile;
}
public void setSupplymobile(String supplymobile) {
this.supplymobile = supplymobile;
}
public String getSupplyname() {
return supplyname;
}
public void setSupplyname(String supplyname) {
this.supplyname = supplyname;
}
public String getSupplyphone() {
return supplyphone;
}
public void setSupplyphone(String supplyphone) {
this.supplyphone = supplyphone;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -