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

📄 crmbulletin.java

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

import java.util.Date;

/**
 * CrmBulletin generated by MyEclipse Persistence Tools
 */

public class CrmBulletin implements java.io.Serializable {

	// Fields

	private String bulletinId;

	private CrmEmployee crmEmployee;

	private String title;

	private Date logDate;

	private Long timeLimit;

	private String topic;

	private String content;

	private String description;

	private String accessories;

	private Long isnew;

	private Long isdel;

	// Constructors

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

	/** full constructor */
	public CrmBulletin(CrmEmployee crmEmployee, String title, Date logDate,
			Long timeLimit, String topic, String content, String description,
			String accessories, Long isnew, Long isdel) {
		this.crmEmployee = crmEmployee;
		this.title = title;
		this.logDate = logDate;
		this.timeLimit = timeLimit;
		this.topic = topic;
		this.content = content;
		this.description = description;
		this.accessories = accessories;
		this.isnew = isnew;
		this.isdel = isdel;
	}

	// Property accessors

	public String getBulletinId() {
		return this.bulletinId;
	}

	public void setBulletinId(String bulletinId) {
		this.bulletinId = bulletinId;
	}

	public CrmEmployee getCrmEmployee() {
		return this.crmEmployee;
	}

	public void setCrmEmployee(CrmEmployee crmEmployee) {
		this.crmEmployee = crmEmployee;
	}

	public String getTitle() {
		return this.title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public Date getLogDate() {
		return this.logDate;
	}

	public void setLogDate(Date logDate) {
		this.logDate = logDate;
	}

	public Long getTimeLimit() {
		return this.timeLimit;
	}

	public void setTimeLimit(Long timeLimit) {
		this.timeLimit = timeLimit;
	}

	public String getTopic() {
		return this.topic;
	}

	public void setTopic(String topic) {
		this.topic = topic;
	}

	public String getContent() {
		return this.content;
	}

	public void setContent(String content) {
		this.content = content;
	}

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

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

	public String getAccessories() {
		return this.accessories;
	}

	public void setAccessories(String accessories) {
		this.accessories = accessories;
	}

	public Long getIsnew() {
		return this.isnew;
	}

	public void setIsnew(Long isnew) {
		this.isnew = isnew;
	}

	public Long getIsdel() {
		return this.isdel;
	}

	public void setIsdel(Long isdel) {
		this.isdel = isdel;
	}

}

⌨️ 快捷键说明

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