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

📄 crmcsstate.java

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

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

/**
 * CrmCsState generated by MyEclipse Persistence Tools
 */

public class CrmCsState implements java.io.Serializable {

	// Fields

	private String csStateId;

	private String csState;

	private String description;

	private Set crmCsComplaints = new HashSet(0);

	// Constructors

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

	/** full constructor */
	public CrmCsState(String csState, String description, Set crmCsComplaints) {
		this.csState = csState;
		this.description = description;
		this.crmCsComplaints = crmCsComplaints;
	}

	// Property accessors

	public String getCsStateId() {
		return this.csStateId;
	}

	public void setCsStateId(String csStateId) {
		this.csStateId = csStateId;
	}

	public String getCsState() {
		return this.csState;
	}

	public void setCsState(String csState) {
		this.csState = csState;
	}

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

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

	public Set getCrmCsComplaints() {
		return this.crmCsComplaints;
	}

	public void setCrmCsComplaints(Set crmCsComplaints) {
		this.crmCsComplaints = crmCsComplaints;
	}

}

⌨️ 快捷键说明

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