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

📄 crmculev.java

📁 基于SSH (struts+spring+hibernate)框架设计的 CRM客户关系管理系统
💻 JAVA
字号:
package com.csu.crm.common.vo;

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

/**
 * CrmCuLev generated by MyEclipse Persistence Tools
 */

public class CrmCuLev implements java.io.Serializable {

	// Fields

	private String cuLevId;

	private String cuLev;

	private Double discount;

	private String description;

	private Set crmCustomers = new HashSet(0);

	// Constructors

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

	/** full constructor */
	public CrmCuLev(String cuLev, Double discount, String description,
			Set crmCustomers) {
		this.cuLev = cuLev;
		this.discount = discount;
		this.description = description;
		this.crmCustomers = crmCustomers;
	}

	// Property accessors

	public String getCuLevId() {
		return this.cuLevId;
	}

	public void setCuLevId(String cuLevId) {
		this.cuLevId = cuLevId;
	}

	public String getCuLev() {
		return this.cuLev;
	}

	public void setCuLev(String cuLev) {
		this.cuLev = cuLev;
	}

	public Double getDiscount() {
		return this.discount;
	}

	public void setDiscount(Double discount) {
		this.discount = discount;
	}

	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -