?? warehouseinfo.java
字號:
package com.wuliu.entity;
public class WareHouseInfo {
/**
* @袁子鵬
* 倉庫信息表
*/
private int wareHouseInfoTableId; //WareHouseInfoTableId --該表自動編號
private String wareHouseId; //WareHouseId --倉庫編號
private String wareHouseName; //WareHouseName --倉庫名稱
private String chargeId; //ChargeId --負責人編號
private String chargeName;
private String wareHouseAdd; //WareHouseAdd --倉庫地址
//空的構造方法
public WareHouseInfo(){
}
//含所有參數(shù)的構造方法
public WareHouseInfo(int WareHouseInfoTableId,String WareHouseId,String WareHouseName,String ChargeId,String WareHouseAdd){
this.wareHouseInfoTableId = WareHouseInfoTableId;
this.wareHouseId = WareHouseId;
this.wareHouseName = WareHouseName;
this.chargeId = ChargeId;
this.wareHouseAdd = WareHouseAdd;
}
//不含WareHouseInfoTableId的構造方法
public WareHouseInfo(String WareHouseId,String WareHouseName,String ChargeId,String WareHouseAdd){
this.wareHouseId = WareHouseId;
this.wareHouseName = WareHouseName;
this.chargeId = ChargeId;
this.wareHouseAdd = WareHouseAdd;
}
//構造方法(劉海鵬添加)
public WareHouseInfo(int id,String wareHouseId,String wareHouseName,String chargeId,String chargeName,String wareHouseAdd){
this.wareHouseInfoTableId = id;
this.wareHouseId = wareHouseId;
this.wareHouseName = wareHouseName;
this.chargeId = chargeId;
this.chargeName = chargeName;
this.wareHouseAdd = wareHouseAdd;
}
public int getWareHouseInfoTableId() {
return wareHouseInfoTableId;
}
public void setWareHouseInfoTableId(int wareHouseInfoTableId) {
this.wareHouseInfoTableId = wareHouseInfoTableId;
}
public String getWareHouseId() {
return wareHouseId;
}
public void setWareHouseId(String wareHouseId) {
this.wareHouseId = wareHouseId;
}
public String getWareHouseName() {
return wareHouseName;
}
public void setWareHouseName(String wareHouseName) {
this.wareHouseName = wareHouseName;
}
public String getChargeId() {
return chargeId;
}
public void setChargeId(String chargeId) {
this.chargeId = chargeId;
}
public String getChargeName() {
return chargeName;
}
public void setChargeName(String chargeName) {
this.chargeName = chargeName;
}
public String getWareHouseAdd() {
return wareHouseAdd;
}
public void setWareHouseAdd(String wareHouseAdd) {
this.wareHouseAdd = wareHouseAdd;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -