noticedatereflection.java
来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 99 行
JAVA
99 行
package com.je.ims.hibernate;
import java.io.Serializable;
import java.util.Date;
public class NoticeDateReflection implements Serializable {
private Long noticeId;
private String fileId;
private String title;
private String noticeOrg;
private String editorName;
private String receiverName;
private String receiveDate;
// private String prepareData;
// Constructors
/** default constructor */
public NoticeDateReflection() {
}
/** full constructor */
// public NotionDateReflection(String fileId, String title, Long year, Long month, String nodeId, String nodeName, String teamName, String teamId, String orgName, String orgPk, Date foundDate, Date limitDate, String foundProceeding, Long editState, Long version, Date fillDate, String editorName, String editorId, String adviceDeal, Long adviceVersion, Date adviceDate, String adviceUndertaker, String adviceUndertakerId, Long adviceState, String orgDirector, String orgDirectorId, Long replyState, Date replyDate, String replyAcceptor, String replyAcceptorId, Long traceState, Date traceStartDate, Date traceEndDate) {
public NoticeDateReflection(String fileId, String title,String noticeOrg,String editorName,String receiverName,String receiveDate){
this.fileId = fileId;
this.title = title;
this.noticeOrg=noticeOrg;
this.editorName = editorName;
this.receiverName=receiverName;
this.receiveDate=receiveDate;
}
// Property accessors
public Long getNoticeId() {
return this.noticeId;
}
public void setNoticeId(Long noticeId) {
this.noticeId = noticeId;
}
public String getFileId() {
return this.fileId;
}
public void setFileId(String fileId) {
this.fileId = fileId;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getNoticeOrg() {
return this.noticeOrg;
}
public void setNoticeOrg(String noticeOrg){
this.noticeOrg=noticeOrg;
}
public String getEditorName() {
return this.editorName;
}
public void setEditorName(String editorName) {
this.editorName = editorName;
}
public String getReceiverName() {
return this.receiverName;
}
public void setReceiverName(String receiverName) {
this.receiverName=receiverName;
}
public String getReceiveDate() {
return this.receiveDate;
}
public void setReceiveDate(String receiveDate) {
this.receiveDate=receiveDate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?