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

📄 daily.java

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JAVA
字号:
/** *  */package com.qrsx.qrsxcrm.model;import java.util.Date;/** * 个人个人计划实体对象 *  * @author Administrator *  */public class Daily {	private String id;	private String title;	private Date beginTime;	private Date endTime;	private String contents;	private String userId;	private User user;	/**	 * @return the beginTime	 */	/**	 * @param beginTime	 *            the beginTime to set	 */	/**	 * @return the content	 */	public String getContents() {		return contents;	}	/**	 * @param content	 *            the content to set	 */	public void setContents(String contents) {		this.contents = contents;	}	/**	 * @return the id	 */	public String getId() {		return id;	}	/**	 * @param id	 *            the id to set	 */	public void setId(String id) {		this.id = id;	}	/**	 * @return the title	 */	public String getTitle() {		return title;	}	/**	 * @param title	 *            the title to set	 */	public void setTitle(String title) {		this.title = title;	}	/**	 * @return the user	 */	public User getUser() {		return user;	}	/**	 * @param user	 *            the user to set	 */	public void setUser(User user) {		this.user = user;	}	public Date getBeginTime() {		return beginTime;	}	public void setBeginTime(Date beginTime) {		this.beginTime = beginTime;	}	public Date getEndTime() {		return endTime;	}	public void setEndTime(Date endTime) {		this.endTime = endTime;	}	public String getUserId() {		return userId;	}	public void setUserId(String userId) {		this.userId = userId;	}}

⌨️ 快捷键说明

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