wise.java

来自「使用spring ,hibernate 框架的稽查管理系统」· Java 代码 · 共 98 行

JAVA
98
字号
package com.je.ims.hibernate;

import java.util.Date;


/**
 * Wise generated by MyEclipse - Hibernate Tools
 */

public class Wise  implements java.io.Serializable {


    // Fields    

     private Long wiseId;
     private Long year;
     private Long fileId;
     private String fileDoc;
     private Date uploadDate;
     private Long isDelete;


    // Constructors

    /** default constructor */
    public Wise() {
    }

    
    /** full constructor */
    public Wise(Long year, Long fileId, String fileDoc, Date uploadDate, Long isDelete) {
        this.year = year;
        this.fileId = fileId;
        this.fileDoc = fileDoc;
        this.uploadDate = uploadDate;
        this.isDelete = isDelete;
    }

   
    // Property accessors

    public Long getWiseId() {
        return this.wiseId;
    }
    
    public void setWiseId(Long wiseId) {
        this.wiseId = wiseId;
    }

    public Long getYear() {
        return this.year;
    }
    
    public void setYear(Long year) {
        this.year = year;
    }

    public Long getFileId() {
        return this.fileId;
    }
    
    public void setFileId(Long fileId) {
        this.fileId = fileId;
    }

    public String getFileDoc() {
        return this.fileDoc;
    }
    
    public void setFileDoc(String fileDoc) {
        this.fileDoc = fileDoc;
    }

    public Date getUploadDate() {
        return this.uploadDate;
    }
    
    public void setUploadDate(Date uploadDate) {
        this.uploadDate = uploadDate;
    }

    public Long getIsDelete() {
        return this.isDelete;
    }
    
    public void setIsDelete(Long isDelete) {
        this.isDelete = isDelete;
    }
   








}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?