📄 stockoutinfo.java
字号:
package com.wuliu.entity;
/*
* 出库实体类 By void 2009-1-9
*/
public class StockOutInfo {
private int stockOutInfoTableId;// 流水号
private String stockOutId; // 出库单编号
private String stockOutDate; // 出库日期
private String carId; // 汽车车牌号
private String chargeId; // 出库负责人编号
private String goodsId; // 出库商品编号
private int goodsOutNumber;// 出库商品数量
private String goodsConsigneeId;// 商品收货人编号
private String goodsTypeId; // 商品分类编号
private String goodsRemark; // 出库单备注信息
/*
* 构造函数
*/
public StockOutInfo(int StockOutInfoTableId, String StockOutId,
String StockOutDate, String CarId, String ChargeId, String GoodsId,
int GoodsOutNumber, String GoodsConsigneeId, String GoodsTypeId,
String GoodsRemark) {
this.stockOutInfoTableId = StockOutInfoTableId;
this.stockOutId = StockOutId;
this.stockOutDate = StockOutDate;
this.carId = CarId;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsOutNumber = GoodsOutNumber;
this.goodsConsigneeId = GoodsConsigneeId;
this.goodsTypeId = GoodsTypeId;
this.goodsRemark = GoodsRemark;
}
public StockOutInfo(String StockOutId, String StockOutDate, String CarId,
String ChargeId, String GoodsId, int GoodsOutNumber,
String GoodsConsigneeId, String GoodsTypeId, String GoodsRemark) {
this.stockOutId = StockOutId;
this.stockOutDate = StockOutDate;
this.carId = CarId;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsOutNumber = GoodsOutNumber;
this.goodsConsigneeId = GoodsConsigneeId;
this.goodsTypeId = GoodsTypeId;
this.goodsRemark = GoodsRemark;
}
public StockOutInfo(String StockOutId, String StockOutDate, String CarId,
String ChargeId, String GoodsId, int GoodsOutNumber,
String GoodsConsigneeId, String GoodsTypeId) {
this.stockOutId = StockOutId;
this.stockOutDate = StockOutDate;
this.carId = CarId;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsOutNumber = GoodsOutNumber;
this.goodsConsigneeId = GoodsConsigneeId;
this.goodsTypeId = GoodsTypeId;
}
//为了插入数据2.16
public StockOutInfo( String StockOutDate, String CarId,
String ChargeId, String GoodsId, int GoodsOutNumber,
String GoodsConsigneeId, String GoodsTypeId,String GoodsRemark) {
this.stockOutDate = StockOutDate;
this.carId = CarId;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsOutNumber = GoodsOutNumber;
this.goodsConsigneeId = GoodsConsigneeId;
this.goodsTypeId = GoodsTypeId;
this.goodsRemark=GoodsRemark;
}
public int getStockOutInfoTableId()
{
return stockOutInfoTableId;
}
public void setStockOutInfoTableId(int stockOutInfoTableId)
{
this.stockOutInfoTableId = stockOutInfoTableId;
}
public String getStockOutId()
{
return stockOutId;
}
public void setStockOutId(String stockOutId)
{
this.stockOutId = stockOutId;
}
public String getStockOutDate()
{
return stockOutDate;
}
public void setStockOutDate(String stockOutDate)
{
this.stockOutDate = stockOutDate;
}
public String getCarId()
{
return carId;
}
public void setCarId(String carId)
{
this.carId = carId;
}
public String getChargeId()
{
return chargeId;
}
public void setChargeId(String chargeId)
{
this.chargeId = chargeId;
}
public String getGoodsId()
{
return goodsId;
}
public void setGoodsId(String goodsId)
{
this.goodsId = goodsId;
}
public int getGoodsOutNumber()
{
return goodsOutNumber;
}
public void setGoodsOutNumber(int goodsOutNumber)
{
this.goodsOutNumber = goodsOutNumber;
}
public String getGoodsConsigneeId()
{
return goodsConsigneeId;
}
public void setGoodsConsigneeId(String goodsConsigneeId)
{
this.goodsConsigneeId = goodsConsigneeId;
}
public String getGoodsTypeId()
{
return goodsTypeId;
}
public void setGoodsTypeId(String goodsTypeId)
{
this.goodsTypeId = goodsTypeId;
}
public String getGoodsRemark()
{
return goodsRemark;
}
public void setGoodsRemark(String goodsRemark)
{
this.goodsRemark = goodsRemark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -