📄 stockpile.java
字号:
package com.university.goodsmanager.biz.entity;import java.io.Serializable;/* * 库存类--库存表 */public class StockPile implements Serializable{ private Integer stockPile_ID; /*库存单编号*/ private String card; /*商品条形码*/ private String product; /*商品名*/ private String type; /*商品类型*/ private String lastEnterDate; /*最后一次修改时间*/ private int quantity; /*数量*/ private double price; /*单价*/ private String storehouse; /*所在仓库*/ public StockPile(){} public StockPile(String card, String product, String type, String lastEnterDate, int quantity, double price,String storehouse) { super(); this.storehouse=storehouse; this.card = card; this.product = product; this.type = type; this.lastEnterDate = lastEnterDate; this.quantity = quantity; this.price = price; } public String getCard() { return card; } public void setCard(String card) { this.card = card; } public String getLastEnterDate() { return lastEnterDate; } public void setLastEnterDate(String lastEnterDate) { this.lastEnterDate = lastEnterDate; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public String getProduct() { return product; } public void setProduct(String product) { this.product = product; } public int getQuantity() { return quantity; } public void setQuantity(int quantity) { this.quantity = quantity; } public Integer getStockPile_ID() { return stockPile_ID; } public void setStockPile_ID(Integer stockPile_ID) { this.stockPile_ID = stockPile_ID; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getStorehouse() { return storehouse; } public void setStorehouse(String storehouse) { this.storehouse = storehouse; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -