⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 noticedatereflection.java

📁 使用spring ,hibernate 框架的稽查管理系统
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -