📄 crmcsfeedback.java
字号:
package com.csu.crm.common.vo;
import java.util.Date;
/**
* CrmCsFeedback generated by MyEclipse Persistence Tools
*/
public class CrmCsFeedback implements java.io.Serializable {
// Fields
private String feedbackId;
private CrmFeedbackLev crmFeedbackLev;
private CrmEmployee crmEmployee;
private CrmContact crmContact;
private String title;
private Date logDate;
private String content;
// Constructors
/** default constructor */
public CrmCsFeedback() {
}
/** full constructor */
public CrmCsFeedback(CrmFeedbackLev crmFeedbackLev,
CrmEmployee crmEmployee, CrmContact crmContact, String title,
Date logDate, String content) {
this.crmFeedbackLev = crmFeedbackLev;
this.crmEmployee = crmEmployee;
this.crmContact = crmContact;
this.title = title;
this.logDate = logDate;
this.content = content;
}
// Property accessors
public String getFeedbackId() {
return this.feedbackId;
}
public void setFeedbackId(String feedbackId) {
this.feedbackId = feedbackId;
}
public CrmFeedbackLev getCrmFeedbackLev() {
return this.crmFeedbackLev;
}
public void setCrmFeedbackLev(CrmFeedbackLev crmFeedbackLev) {
this.crmFeedbackLev = crmFeedbackLev;
}
public CrmEmployee getCrmEmployee() {
return this.crmEmployee;
}
public void setCrmEmployee(CrmEmployee crmEmployee) {
this.crmEmployee = crmEmployee;
}
public CrmContact getCrmContact() {
return this.crmContact;
}
public void setCrmContact(CrmContact crmContact) {
this.crmContact = crmContact;
}
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 String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -