merchantgoodsstoragebean.java

来自「基于struts的网上商店源码」· Java 代码 · 共 69 行

JAVA
69
字号
package com.mole.struts.bean;

public class MerchantGoodsStorageBean {
	private String id;
	private String name;
	private String type;
	private int amount;
	private int lastStockAmount;
	private int totalAmount;
	private String stockDate;

	public String getStockDate() {
		return stockDate;
	}

	public void setStockDate(String stockDate) {
		this.stockDate = stockDate;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getAmount() {
		return amount;
	}

	public void setAmount(int amount) {
		this.amount = amount;
	}

	public int getLastStockAmount() {
		return lastStockAmount;
	}

	public void setLastStockAmount(int lastStockAmount) {
		this.lastStockAmount = lastStockAmount;
	}

	public int getTotalAmount() {
		return totalAmount;
	}

	public void setTotalAmount(int totalAmount) {
		this.totalAmount = totalAmount;
	}

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?