normproperty.java

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

JAVA
86
字号
package tarena.entity;

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

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

public class Normproperty implements java.io.Serializable {

	// Fields

	private Integer id;
	private Norms norms;
	private String properytname;
	private String description;
	private Set productnorms = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Normproperty(Norms norms, String properytname, String description) {
		this.norms = norms;
		this.properytname = properytname;
		this.description = description;
	}

	/** full constructor */
	public Normproperty(Norms norms, String properytname, String description,
			Set productnorms) {
		this.norms = norms;
		this.properytname = properytname;
		this.description = description;
		this.productnorms = productnorms;
	}

	// Property accessors

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

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

	public Norms getNorms() {
		return this.norms;
	}

	public void setNorms(Norms norms) {
		this.norms = norms;
	}

	public String getProperytname() {
		return this.properytname;
	}

	public void setProperytname(String properytname) {
		this.properytname = properytname;
	}

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

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

	public Set getProductnorms() {
		return this.productnorms;
	}

	public void setProductnorms(Set productnorms) {
		this.productnorms = productnorms;
	}

}

⌨️ 快捷键说明

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