📄 worksearchresult.java
字号:
package net.java.workeffort.service.domain;import java.util.Date;/** * Search result for works * @author Antony Joseph */public class WorkSearchResult { private Long workId; private String workTypeDescr; private String name; private Date scheduledStartDt; private String workStatusDescr; private Date createdTs; private String createdBy; /** * @return Returns the createdBy. */ public String getCreatedBy() { return createdBy; } /** * @param createdBy The createdBy to set. */ public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } /** * @return Returns the createdTs. */ public Date getCreatedTs() { return createdTs; } /** * @param createdTs The createdTs to set. */ public void setCreatedTs(Date createdTs) { this.createdTs = createdTs; } /** * @return Returns the name. */ public String getName() { return name; } /** * @param name The name to set. */ public void setName(String name) { this.name = name; } /** * @return Returns the scheduledStartDt. */ public Date getScheduledStartDt() { return scheduledStartDt; } /** * @param scheduledStartDt The scheduledStartDt to set. */ public void setScheduledStartDt(Date scheduledStartDt) { this.scheduledStartDt = scheduledStartDt; } /** * @return Returns the workId. */ public Long getWorkId() { return workId; } /** * @param workId The workId to set. */ public void setWorkId(Long workId) { this.workId = workId; } /** * @return Returns the workStatusDescr. */ public String getWorkStatusDescr() { return workStatusDescr; } /** * @param workStatusDescr The workStatusDescr to set. */ public void setWorkStatusDescr(String workStatusDescr) { this.workStatusDescr = workStatusDescr; } /** * @return Returns the workTypeDescr. */ public String getWorkTypeDescr() { return workTypeDescr; } /** * @param workTypeDescr The workTypeDescr to set. */ public void setWorkTypeDescr(String workTypeDescr) { this.workTypeDescr = workTypeDescr; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -