crmentindustry.java

来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 69 行

JAVA
69
字号
package com.csu.crm.common.vo;

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

/**
 * CrmEntIndustry generated by MyEclipse Persistence Tools
 */

public class CrmEntIndustry implements java.io.Serializable {

	// Fields

	private String industryId;

	private String industry;

	private String description;

	private Set crmCustomers = new HashSet(0);

	// Constructors

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

	/** full constructor */
	public CrmEntIndustry(String industry, String description, Set crmCustomers) {
		this.industry = industry;
		this.description = description;
		this.crmCustomers = crmCustomers;
	}

	// Property accessors

	public String getIndustryId() {
		return this.industryId;
	}

	public void setIndustryId(String industryId) {
		this.industryId = industryId;
	}

	public String getIndustry() {
		return this.industry;
	}

	public void setIndustry(String industry) {
		this.industry = industry;
	}

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

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

	public Set getCrmCustomers() {
		return this.crmCustomers;
	}

	public void setCrmCustomers(Set crmCustomers) {
		this.crmCustomers = crmCustomers;
	}

}

⌨️ 快捷键说明

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