⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 payway.java

📁 基于struts+hibernate的电子商务网站。可运行。数据库mysql
💻 JAVA
字号:
package tarena.entity;

import java.util.HashSet;
import java.util.Set;

/**
 * Payway entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Payway implements java.io.Serializable {

	// Fields

	private Integer id;
	private Byte isclose;
	private String payname;
	private String paydesc;
	private Double fees;
	private Set payparameters = new HashSet(0);
	private Set orderses = new HashSet(0);

	// Constructors

	/** default constructor */
	public Payway() {
	}

	/** minimal constructor */
	public Payway(Byte isclose, String payname, Double fees) {
		this.isclose = isclose;
		this.payname = payname;
		this.fees = fees;
	}

	/** full constructor */
	public Payway(Byte isclose, String payname, String paydesc, Double fees,
			Set payparameters, Set orderses) {
		this.isclose = isclose;
		this.payname = payname;
		this.paydesc = paydesc;
		this.fees = fees;
		this.payparameters = payparameters;
		this.orderses = orderses;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

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

	public Byte getIsclose() {
		return this.isclose;
	}

	public void setIsclose(Byte isclose) {
		this.isclose = isclose;
	}

	public String getPayname() {
		return this.payname;
	}

	public void setPayname(String payname) {
		this.payname = payname;
	}

	public String getPaydesc() {
		return this.paydesc;
	}

	public void setPaydesc(String paydesc) {
		this.paydesc = paydesc;
	}

	public Double getFees() {
		return this.fees;
	}

	public void setFees(Double fees) {
		this.fees = fees;
	}

	public Set getPayparameters() {
		return this.payparameters;
	}

	public void setPayparameters(Set payparameters) {
		this.payparameters = payparameters;
	}

	public Set getOrderses() {
		return this.orderses;
	}

	public void setOrderses(Set orderses) {
		this.orderses = orderses;
	}

}

⌨️ 快捷键说明

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