payparameter.java

来自「网上购物系统」· Java 代码 · 共 94 行

JAVA
94
字号
package tarena.entity;

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

public class Payparameter implements java.io.Serializable {

	// Fields

	private Integer id;
	private Payway payway;
	private String pname;
	private String pkey;
	private String pvalue;
	private String description;

	// Constructors

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

	/** minimal constructor */
	public Payparameter(Payway payway, String pname, String pkey, String pvalue) {
		this.payway = payway;
		this.pname = pname;
		this.pkey = pkey;
		this.pvalue = pvalue;
	}

	/** full constructor */
	public Payparameter(Payway payway, String pname, String pkey,
			String pvalue, String description) {
		this.payway = payway;
		this.pname = pname;
		this.pkey = pkey;
		this.pvalue = pvalue;
		this.description = description;
	}

	// Property accessors

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

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

	public Payway getPayway() {
		return this.payway;
	}

	public void setPayway(Payway payway) {
		this.payway = payway;
	}

	public String getPname() {
		return this.pname;
	}

	public void setPname(String pname) {
		this.pname = pname;
	}

	public String getPkey() {
		return this.pkey;
	}

	public void setPkey(String pkey) {
		this.pkey = pkey;
	}

	public String getPvalue() {
		return this.pvalue;
	}

	public void setPvalue(String pvalue) {
		this.pvalue = pvalue;
	}

	public String getDescription() {
		return this.description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

}

⌨️ 快捷键说明

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