supplier.java
来自「基于mvc的java进销存系统」· Java 代码 · 共 94 行
JAVA
94 行
/*
* Supplier.java
*
* Created on 2007年4月21日, 上午10:34
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package table;
/**
*
* @author 下雪天
*/
public class Supplier {
private String SupplierID; //供应商编号
private String SupplierName; //供应商名称
private String OwerPost; //负责人职称
private String Ower; //负责人
private String Phone; //电话
private String MobilePhone; //移动电话
private String SupplierAddress; //供应商地址
private java.sql.Date LastPurchaseDate; //最后采购日期
/** Creates a new instance of Supplier */
public Supplier() {
}
public String getSupplierID() {
return SupplierID;
}
public void setSupplierID(String SupplierID) {
this.SupplierID = SupplierID;
}
public String getSupplierName() {
return SupplierName;
}
public void setSupplierName(String SupplierName) {
this.SupplierName = SupplierName;
}
public String getOwer() {
return Ower;
}
public void setOwer(String Ower) {
this.Ower = Ower;
}
public String getMobilePhone() {
return MobilePhone;
}
public void setMobilePhone(String MobilePhone) {
this.MobilePhone = MobilePhone;
}
public String getSupplierAddress() {
return SupplierAddress;
}
public void setSupplierAddress(String SupplierAddress) {
this.SupplierAddress = SupplierAddress;
}
public String getOwerPost() {
return OwerPost;
}
public void setOwerPost(String OwerPost) {
this.OwerPost = OwerPost;
}
public String getPhone() {
return Phone;
}
public void setPhone(String Phone) {
this.Phone = Phone;
}
public java.sql.Date getLastPurchaseDate() {
return LastPurchaseDate;
}
public void setLastPurchaseDate(java.sql.Date LastPurchaseDate) {
this.LastPurchaseDate = LastPurchaseDate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?