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

📄 norms.java

📁 一个网上购物商城系统
💻 JAVA
字号:
package tarena.entity;

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

/**
 * Norms generated by MyEclipse Persistence Tools
 */

public class Norms implements java.io.Serializable {

	// Fields

	private Integer id;

	private Category category;

	private String normname;

	private String description;

	private Set normproperties = new HashSet(0);

	private Set productnorms = new HashSet(0);

	// Constructors

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

	/** minimal constructor */
	public Norms(Category category, String normname) {
		this.category = category;
		this.normname = normname;
	}

	/** full constructor */
	public Norms(Category category, String normname, String description,
			Set normproperties, Set productnorms) {
		this.category = category;
		this.normname = normname;
		this.description = description;
		this.normproperties = normproperties;
		this.productnorms = productnorms;
	}

	// Property accessors

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

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

	public Category getCategory() {
		return this.category;
	}

	public void setCategory(Category category) {
		this.category = category;
	}

	public String getNormname() {
		return this.normname;
	}

	public void setNormname(String normname) {
		this.normname = normname;
	}

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

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

	public Set getNormproperties() {
		return this.normproperties;
	}

	public void setNormproperties(Set normproperties) {
		this.normproperties = normproperties;
	}

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

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

}

⌨️ 快捷键说明

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