📄 34529b349728001d1b69a3336d673cb1
字号:
/** * */package com.qrsx.qrsxcrm.model;/** * 个人个人计划实体对象 * @author Administrator * */public class Daily { private String id; private String title; private String beginTime; private String endTime; private String content; private String employeeId; private User user; /** * @return the beginTime */ public String getBeginTime() { return beginTime; } /** * @param beginTime the beginTime to set */ public void setBeginTime(String beginTime) { this.beginTime = beginTime; } /** * @return the content */ public String getContent() { return content; } /** * @param content the content to set */ public void setContent(String content) { this.content = content; } /** * @return the employeeId */ public String getEmployeeId() { return employeeId; } /** * @param employeeId the employeeId to set */ public void setEmployeeId(String employeeId) { this.employeeId = employeeId; } /** * @return the endTime */ public String getEndTime() { return endTime; } /** * @param endTime the endTime to set */ public void setEndTime(String endTime) { this.endTime = endTime; } /** * @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; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -