adminvoucherviewbean.java

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

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

public class AdminVoucherViewBean {
	private String voucherName = null;
	private String voucherDiscription = null;
	private String voucherAmount = null;
	private String voucherDate = null;
	private String storeName = null;
	private String storeType = null;
	private String storeArea = null;
	private String storeCity = null;
	private String storeProvince = null;

	public String getVoucherName() {
		return voucherName;
	}

	public void setVoucherName(String voucherName) {
		this.voucherName = voucherName;
	}

	public String getVoucherDiscription() {
		return voucherDiscription;
	}

	public void setVoucherDiscription(String voucherDiscription) {
		this.voucherDiscription = voucherDiscription;
	}

	public String getVoucherAmount() {
		return voucherAmount;
	}

	public void setVoucherAmount(String voucherAmount) {
		this.voucherAmount = voucherAmount;
	}

	public String getVoucherDate() {
		return voucherDate;
	}

	public void setVoucherDate(String voucherDate) {
		this.voucherDate = voucherDate;
	}

	public String getStoreName() {
		return storeName;
	}

	public void setStoreName(String storeName) {
		this.storeName = storeName;
	}

	public String getStoreType() {
		return storeType;
	}

	public void setStoreType(String storeType) {
		this.storeType = storeType;
	}

	public String getStoreArea() {
		return storeArea;
	}

	public void setStoreArea(String storeArea) {
		this.storeArea = storeArea;
	}

	public String getStoreCity() {
		return storeCity;
	}

	public void setStoreCity(String storeCity) {
		this.storeCity = storeCity;
	}

	public String getStoreProvince() {
		return storeProvince;
	}

	public void setStoreProvince(String storeProvince) {
		this.storeProvince = storeProvince;
	}

}

⌨️ 快捷键说明

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