📄 stockininfo.java
字号:
package com.wuliu.entity;
/**
* 入库实体类By void 2009-1-9
*/
public class StockInInfo {
private int stockInInfoTableId; // 流水号
private String stockInId; // 入库单编号(SKI+流水号)
private String stockInDate; // 入库日期[日期格式yyyy-mm-dd-hh-mm(年-月-日-时-分)]
private String chargeId; // 入库负责人编号
private String goodsId; // 入库商品编号
private int goodsInNumber; // 入库商品数量
private String goodsTypeId; // 商品分类编号
private String goodsRemark; // 入库单备注信息
private String goodsName;//商品名称
public String getGoodsName() {
return goodsName;
}
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
/**
*
* @构造函数
*/
public StockInInfo(int StockInInfoTableId, String StockInId,
String StockInDate, String ChargeId, String GoodsId,
int GoodsInNumber, String GoodsTypeId, String GoodsRemark) {
this.stockInInfoTableId = StockInInfoTableId;
this.stockInId = StockInId;
this.stockInDate = StockInDate;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsInNumber = GoodsInNumber;
this.goodsTypeId = GoodsTypeId;
this.goodsRemark = GoodsRemark;
}
public StockInInfo(String StockInId, String StockInDate, String ChargeId,
String GoodsId, int GoodsInNumber, String GoodsTypeId,
String GoodsRemark) {
this.stockInId = StockInId;
this.stockInDate = StockInDate;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsInNumber = GoodsInNumber;
this.goodsTypeId = GoodsTypeId;
this.goodsRemark = GoodsRemark;
}
public StockInInfo(String StockInId, String StockInDate, String ChargeId,
String GoodsId, int GoodsInNumber, String GoodsTypeId) {
this.stockInId = StockInId;
this.stockInDate = StockInDate;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsInNumber = GoodsInNumber;
this.goodsTypeId = GoodsTypeId;
}
/*
* 09.2.12为插入数据添加构造方法
*/
public StockInInfo( String StockInDate, String ChargeId,
String GoodsId, int GoodsInNumber, String GoodsTypeId,
String GoodsRemark) {
this.stockInDate = StockInDate;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsInNumber = GoodsInNumber;
this.goodsTypeId = GoodsTypeId;
this.goodsRemark = GoodsRemark;
}
/*
* 09.2.19为添加构造方法[goodsName]
*/
public StockInInfo(int StockInInfoTableId, String StockInId,
String StockInDate, String ChargeId, String GoodsId,
int GoodsInNumber, String GoodsTypeId, String GoodsRemark,String goodsName) {
this.stockInInfoTableId = StockInInfoTableId;
this.stockInId = StockInId;
this.stockInDate = StockInDate;
this.chargeId = ChargeId;
this.goodsId = GoodsId;
this.goodsInNumber = GoodsInNumber;
this.goodsTypeId = GoodsTypeId;
this.goodsRemark = GoodsRemark;
this.goodsName=goodsName;
}
public StockInInfo(){
}
public int getStockInInfoTableId()
{
return stockInInfoTableId;
}
public void setStockInInfoTableId(int stockInInfoTableId)
{
this.stockInInfoTableId = stockInInfoTableId;
}
public String getStockInId()
{
return stockInId;
}
public void setStockInId(String stockInId)
{
this.stockInId = stockInId;
}
public String getStockInDate()
{
return stockInDate;
}
public void setStockInDate(String stockInDate)
{
this.stockInDate = stockInDate;
}
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 getGoodsInNumber()
{
return goodsInNumber;
}
public void setGoodsInNumber(int goodsInNumber)
{
this.goodsInNumber = goodsInNumber;
}
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 + -