?? activitytaskvo.java
字號:
package com.yuanchung.sales.vo.taskEvent;
import java.util.Date;
import com.yuanchung.sales.model.customer.CustomerContact;
import com.yuanchung.sales.model.user.User;
public class ActivityTaskVo implements java.io.Serializable {
private Integer id;
private User user;
private String createDate;
private String subject;
private String contentDescribe;
private Integer executeState;
private Integer flag;
private String doneResult;
private String wakeUpDate;
private String functionId;
private Integer recordId;
private CustomerContact customerContact;
private String recordTime;
private Integer sendMail;
private String finalTime;
private Integer beFirst;
private String wakeUpTime;
private String lastModifyTime;
private Integer modifyManId;
private String recordName;
private Integer assignerId;
private String assignerName;
private Integer contactId;
private String contactName;
public Integer getContactId() {
return contactId;
}
public void setContactId(Integer contactId) {
this.contactId = contactId;
}
public String getContactName() {
return contactName;
}
public void setContactName(String contactName) {
this.contactName = contactName;
}
public ActivityTaskVo(Integer id, String subject, Integer executeState,
String functionId, Integer recordId, String recordName,String finalTime, Integer beFirst,
Integer assignerId, String assignerName, String lastModifyTime) {
this.id = id;
this.subject = subject;
this.executeState = executeState;
this.functionId = functionId;
this.recordId = recordId;
this.recordName = recordName;
this.finalTime = finalTime;
this.beFirst = beFirst;
this.assignerId = assignerId;
this.assignerName = assignerName;
this.lastModifyTime = lastModifyTime;
}
public ActivityTaskVo(Integer id, String subject, Integer executeState,
String functionId, Integer recordId, String recordName,String finalTime, Integer beFirst,
Integer assignerId, String assignerName, String lastModifyTime, int contactId, String contactName) {
this.id = id;
this.subject = subject;
this.executeState = executeState;
this.functionId = functionId;
this.recordId = recordId;
this.recordName = recordName;
this.finalTime = finalTime;
this.beFirst = beFirst;
this.assignerId = assignerId;
this.assignerName = assignerName;
this.lastModifyTime = lastModifyTime;
this.contactId = contactId;
this.contactName = contactName;
}
public String getAssignerName() {
return assignerName;
}
public void setAssignerName(String assignerName) {
this.assignerName = assignerName;
}
public Integer getAssignerId() {
return assignerId;
}
public void setAssignerId(Integer assignerId) {
this.assignerId = assignerId;
}
public String getRecordName() {
return recordName;
}
public void setRecordName(String recordName) {
this.recordName = recordName;
}
public ActivityTaskVo() {
}
/**
* 構造函數;
* @param id
* @param recordName
* @param customerContact
* @param subject
* @param createDate
*/
public ActivityTaskVo(Integer id, String recordName,Integer recordId,
CustomerContact customerContact, String subject, String finalTime,String functionId) {
this.id = id;
this.recordName = recordName;
this.recordId = recordId;
this.customerContact = customerContact;
this.subject = subject;
this.finalTime = finalTime;
this.functionId = functionId;
}
public ActivityTaskVo(Integer id, User user, String createDate,
String subject, String contentDescribe, Integer executeState,
Integer flag, String doneResult, String wakeUpDate,
String functionId, Integer recordId,
CustomerContact customerContact, String recordTime,
Integer sendMail, String finalTime, Integer beFirst,
String wakeUpTime, String lastModifyTime, Integer modifyManId,
String recordName) {
this.recordName = recordName;
this.id = id;
this.user = user;
this.createDate = createDate;
this.subject = subject;
this.contentDescribe = contentDescribe;
this.executeState = executeState;
this.flag = flag;
this.doneResult = doneResult;
this.wakeUpDate = wakeUpDate;
this.functionId = functionId;
this.recordId = recordId;
this.customerContact = customerContact;
this.recordTime = recordTime;
this.sendMail = sendMail;
this.finalTime = finalTime;
this.beFirst = beFirst;
this.wakeUpTime = wakeUpTime;
this.lastModifyTime = lastModifyTime;
this.modifyManId = modifyManId;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
public String getContentDescribe() {
return contentDescribe;
}
public void setContentDescribe(String contentDescribe) {
this.contentDescribe = contentDescribe;
}
public Integer getExecuteState() {
return executeState;
}
public void setExecuteState(Integer executeState) {
this.executeState = executeState;
}
public Integer getFlag() {
return flag;
}
public void setFlag(Integer flag) {
this.flag = flag;
}
public String getDoneResult() {
return doneResult;
}
public void setDoneResult(String doneResult) {
this.doneResult = doneResult;
}
public String getWakeUpDate() {
return wakeUpDate;
}
public void setWakeUpDate(String wakeUpDate) {
this.wakeUpDate = wakeUpDate;
}
public String getFunctionId() {
return functionId;
}
public void setFunctionId(String functionId) {
this.functionId = functionId;
}
public Integer getRecordId() {
return recordId;
}
public void setRecordId(Integer recordId) {
this.recordId = recordId;
}
public CustomerContact getCustomerContact() {
return customerContact;
}
public void setCustomerContact(CustomerContact customerContact) {
this.customerContact = customerContact;
}
public String getRecordTime() {
return recordTime;
}
public void setRecordTime(String recordTime) {
this.recordTime = recordTime;
}
public Integer getSendMail() {
return sendMail;
}
public void setSendMail(Integer sendMail) {
this.sendMail = sendMail;
}
public String getFinalTime() {
return finalTime;
}
public void setFinalTime(String finalTime) {
this.finalTime = finalTime;
}
public Integer getBeFirst() {
return beFirst;
}
public void setBeFirst(Integer beFirst) {
this.beFirst = beFirst;
}
public String getWakeUpTime() {
return wakeUpTime;
}
public void setWakeUpTime(String wakeUpTime) {
this.wakeUpTime = wakeUpTime;
}
public String getLastModifyTime() {
return lastModifyTime;
}
public void setLastModifyTime(String lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
public Integer getModifyManId() {
return modifyManId;
}
public void setModifyManId(Integer modifyManId) {
this.modifyManId = modifyManId;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -