📄 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(){
}
//含所有参数的构造方法
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 + -