merchantbizgroupmemberform.java

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

JAVA
120
字号
package com.mole.struts.form;

import org.apache.struts.action.ActionForm;

public class MerchantBizGroupMemberForm extends ActionForm {

	private String bizgroupId;
	private String activityId;

	private String storeA;
	private int scoreA;
	private String discountA;
	private String storeB;
	private int scoreB;
	private String discountB;

	private int voucherId;
	private int amount;
	private String attStoreId;

	private String discount;

	public String getBizgroupId() {
		return bizgroupId;
	}

	public void setBizgroupId(String bizgroupId) {
		this.bizgroupId = bizgroupId;
	}

	public String getStoreA() {
		return storeA;
	}

	public void setStoreA(String storeA) {
		this.storeA = storeA;
	}

	public int getScoreA() {
		return scoreA;
	}

	public void setScoreA(int scoreA) {
		this.scoreA = scoreA;
	}

	public String getStoreB() {
		return storeB;
	}

	public void setStoreB(String storeB) {
		this.storeB = storeB;
	}

	public int getScoreB() {
		return scoreB;
	}

	public void setScoreB(int scoreB) {
		this.scoreB = scoreB;
	}

	public int getVoucherId() {
		return voucherId;
	}

	public void setVoucherId(int voucherId) {
		this.voucherId = voucherId;
	}

	public int getAmount() {
		return amount;
	}

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

	public String getAttStoreId() {
		return attStoreId;
	}

	public void setAttStoreId(String attStoreId) {
		this.attStoreId = attStoreId;
	}

	public String getDiscountA() {
		return discountA;
	}

	public void setDiscountA(String discountA) {
		this.discountA = discountA;
	}

	public String getDiscountB() {
		return discountB;
	}

	public void setDiscountB(String discountB) {
		this.discountB = discountB;
	}

	public String getDiscount() {
		return discount;
	}

	public void setDiscount(String discount) {
		this.discount = discount;
	}

	public String getActivityId() {
		return activityId;
	}

	public void setActivityId(String activityId) {
		this.activityId = activityId;
	}

}

⌨️ 快捷键说明

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