📄 supply.java
字号:
package com.wl.entity;
/**
*
* @author tian xiaoshun 封装供应商表
*/
public class Supply {
private int id; // 供应商信息表自动编号
private String supplyId; // 供应商Id
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 Supply() {
}
/**
* 全属性构造方法
*
* @param Id
* @param SupplyId
* @param SupplyName
* @param SupplyCharge
* @param SupplyAddress
* @param SupplyPhone
* @param SupplyMobile
* @param SupplyFax
* @param SupplyEmail
* @param SupplyHttp
*/
public Supply(int id, String supplyId, String supplyName,
String supplyCharge, String supplyAddress, String supplyPhone,
String supplyMobile, String supplyFax, String supplyEmail,
String usupplyHttppplyHttp) {
this.id = id;
this.supplyAddress = supplyAddress;
this.supplyCharge = supplyCharge;
this.supplyEmail = supplyEmail;
this.supplyFax = supplyFax;
this.supplyHttp = usupplyHttppplyHttp;
this.supplyId = supplyId;
this.supplyMobile = supplyMobile;
this.supplyName = supplyName;
this.supplyPhone = supplyPhone;
}
public Supply(String supplyId, String supplyName,
String supplyCharge, String supplyAddress, String supplyPhone,
String supplyMobile, String supplyFax, String supplyEmail,
String usupplyHttppplyHttp) {
this.supplyAddress = supplyAddress;
this.supplyCharge = supplyCharge;
this.supplyEmail = supplyEmail;
this.supplyFax = supplyFax;
this.supplyHttp = usupplyHttppplyHttp;
this.supplyId = supplyId;
this.supplyMobile = supplyMobile;
this.supplyName = supplyName;
this.supplyPhone = supplyPhone;
}
/**
*
* @return
*/
public int getId() {
return id;
}
/**
*
* @return SupplyId
*/
public String getSupplyId() {
return supplyId;
}
/**
*
* @return SupplyName
*/
public String getSupplyName() {
return supplyName;
}
/**
*
* @return SupplyCharge
*/
public String getSupplyCharge() {
return supplyCharge;
}
/**
*
* @return SupplyAddress
*/
public String getSupplyAddress() {
return supplyAddress;
}
/**
*
* @return SupplyPhone
*/
public String getSupplyPhone() {
return supplyPhone;
}
/**
*
* @return SupplyMobile
*/
public String getSupplyMobile() {
return supplyMobile;
}
/**
*
* @return SupplyFax
*/
public String getSupplyFax() {
return supplyFax;
}
/**
*
* @return SupplyEmail
*/
public String getSupplyEmail() {
return supplyEmail;
}
/**
*
* @return SupplyHttp
*/
public String getSupplyHttp() {
return supplyHttp;
}
/**
*
* @param id
*/
public void setId(int id) {
this.id = id;
}
/**
*
* @param supplyId
*/
public void setSupplyId(String supplyId) {
this.supplyId = supplyId;
}
/**
*
* @param supplyName
*/
public void setSupplyName(String supplyName) {
this.supplyName = supplyName;
}
/**
*
* @param supplyCharge
*/
public void setSupplyCharge(String supplyCharge) {
this.supplyCharge = supplyCharge;
}
/**
*
* @param supplyAddress
*/
public void setSupplyAddress(String supplyAddress) {
this.supplyAddress = supplyAddress;
}
/**
*
* @param supplyPhone
*/
public void setSupplyPhone(String supplyPhone) {
this.supplyPhone = supplyPhone;
}
/**
*
* @param supplyMobile
*/
public void setSupplyMobile(String supplyMobile) {
this.supplyMobile = supplyMobile;
}
/**
*
* @param supplyFax
*/
public void setSupplyFax(String supplyFax) {
this.supplyFax = supplyFax;
}
/**
*
* @param supplyEmail
*/
public void setSupplyEmail(String supplyEmail) {
this.supplyEmail = supplyEmail;
}
/**
*
* @param supplyHttp
*/
public void setSupplyHttp(String supplyHttp) {
this.supplyHttp = supplyHttp;
}
/**
* tostring方法
*/
public String toString (){
return id+""+supplyId+""+supplyName+""+supplyCharge+""+supplyAddress+""+supplyPhone+""+supplyMobile+""+supplyFax+supplyEmail+""+supplyHttp;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -