📄 stockininfo.java
字号:
package com.wl.entity;
/**
*
* @author wangJianwei
*入库单信息表javaBean
*/
public class StockInInfo {
public StockInInfo() {
}
private int id;//入库单信息表自动编号
private String stockInId;//入库单Id
private String stockInDate;//入库单生成时间
private int chargeId;//负责人Id
private int goodsId;//入库商品Id
private int goodsInNumber;//商品入库量
private int typeId;//入库商品型号Id
private int commodityId;//入库商品分类Id
private String goodsInMemo;//入库备注信息
private String goodsName;//入库商品名称
private String goodsTypeName;//入库商品类型
private String goodsCommecteName;//入库型号名称
private String goodsChargeName;//负责人名称
/**
*
* @param stockInId
* @param stockInDate
* @param chargeId
* @param goodsId
* @param goodsInNumber
* @param typeId
* @param commodityId
* @param goodsInMemo
*/
public StockInInfo(String stockInId,String stockInDate,int chargeId,int goodsId,int goodsInNumber,
int typeId,int commodityId,String goodsInMemo) {
this.chargeId = chargeId;
this.commodityId = commodityId;
this.goodsId = goodsId;
this.goodsInMemo = goodsInMemo;
this.goodsInNumber = goodsInNumber;
this.stockInDate = stockInDate;
this.stockInId = stockInId;
this.typeId = typeId;
}
/**
*
* @param id
* @param stockInId
* @param stockInDate
* @param goodsChargeName
* @param goodsName
* @param goodsInNumber
* @param goodsTypeName
* @param goodsCommecteName
* @param goodsInMemo
*/
public StockInInfo(int id,String stockInId,String stockInDate,String goodsChargeName,String goodsName,int goodsInNumber,
String goodsTypeName,String goodsCommecteName,String goodsInMemo,int chargeId,int goodsId,int typeId,int commodityId) {
this.id=id;
this.goodsChargeName=goodsChargeName;
this.goodsCommecteName=goodsCommecteName;
this.goodsName=goodsName;
this.goodsInMemo = goodsInMemo;
this.goodsInNumber = goodsInNumber;
this.stockInDate = stockInDate;
this.stockInId = stockInId;
this.goodsTypeName=goodsTypeName;
this.chargeId=chargeId;
this.goodsId=goodsId;
this.typeId=typeId;
this.commodityId=commodityId;
}
/**
*
* @param id
* @param stockInId
* @param stockInDate
* @param chargeId
* @param goodsId
* @param goodsInNumber
* @param typeId
* @param commodityId
* @param goodsInMemo
*/
public StockInInfo(int id,String stockInId,String stockInDate,int chargeId,int goodsId,int goodsInNumber,
int typeId,int commodityId,String goodsInMemo,String goodsName) {
this.id=id;
this.stockInId = stockInId;
this.stockInDate = stockInDate;
this.chargeId = chargeId;
this.goodsId = goodsId;
this.goodsInNumber = goodsInNumber;
this.typeId = typeId;
this.commodityId = commodityId;
this.goodsInMemo = goodsInMemo;
this.goodsName=goodsName;
}
/**
*
* @param id
* @param stockInId
* @param stockInDate
* @param chargeId
* @param goodsId
* @param goodsInNumber
* @param typeId
* @param commodityId
* @param goodsInMemo
*/
public StockInInfo(int id,String stockInId,String stockInDate,int chargeId,int goodsId,int goodsInNumber,
int typeId,int commodityId,String goodsInMemo) {
this.id=id;
this.chargeId = chargeId;
this.commodityId = commodityId;
this.goodsId = goodsId;
this.goodsInMemo = goodsInMemo;
this.goodsInNumber = goodsInNumber;
this.stockInDate = stockInDate;
this.stockInId = stockInId;
this.typeId = typeId;
}
/**
*
* @return id
*/
public int getId() {
return id;
}
/**
*
* @param id
*/
public void setId(int id) {
this.id = id;
}
/**
*
* @return stockInId
*/
public String getStockInId() {
return stockInId;
}
/**
*
* @param stockInId
*/
public void setStockInId(String stockInId) {
this.stockInId = stockInId;
}
/**
*
* @return stockInDate
*/
public String getStockInDate() {
return stockInDate;
}
/**
*
* @param stockInDate
*/
public void setStockInDate(String stockInDate) {
this.stockInDate = stockInDate;
}
/**
*
* @return chargeId
*/
public int getChargeId() {
return chargeId;
}
/**
*
* @param chargeId
*/
public void setChargeId(int chargeId) {
this.chargeId = chargeId;
}
/**
*
* @return goodsId
*/
public int getGoodsId() {
return goodsId;
}
/**
*
* @param goodsId
*/
public void setGoodsId(int goodsId) {
this.goodsId = goodsId;
}
/**
*
* @return goodsInNumber
*/
public int getGoodsInNumber() {
return goodsInNumber;
}
/**
*
* @param goodsInNumber
*/
public void setGoodsInNumber(int goodsInNumber) {
this.goodsInNumber = goodsInNumber;
}
/**
*
* @return typeId
*/
public int getTypeId() {
return typeId;
}
/**
*
* @param typeId
*/
public void setTypeId(int typeId) {
this.typeId = typeId;
}
/**
*
* @return commodityId
*/
public int getCommodityId() {
return commodityId;
}
/**
*
* @param commodityId
*/
public void setCommodityId(int commodityId) {
this.commodityId = commodityId;
}
/**
*
* @return goodsInMemo
*/
public String getGoodsInMemo() {
return goodsInMemo;
}
/**
*
* @param goodsInMemo
*/
public void setGoodsInMemo(String goodsInMemo) {
this.goodsInMemo = goodsInMemo;
}
public String getGoodsName() {
return goodsName;
}
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
public String getGoodsTypeName() {
return goodsTypeName;
}
public void setGoodsTypeName(String goodsTypeName) {
this.goodsTypeName = goodsTypeName;
}
public String getGoodsCommecteName() {
return goodsCommecteName;
}
public void setGoodsCommecteName(String goodsCommecteName) {
this.goodsCommecteName = goodsCommecteName;
}
public String getGoodsChargeName() {
return goodsChargeName;
}
public void setGoodsChargeName(String goodsChargeName) {
this.goodsChargeName = goodsChargeName;
}
/**
* 复写toString()方法
*/
public String toString() {
return chargeId+""+commodityId+""+goodsId+""+goodsInMemo+""+goodsInNumber+""+stockInDate+""+stockInId+""+typeId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -