mwise.java

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

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

import java.util.Date;


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

public class mWise  implements java.io.Serializable {


    // Fields    

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

    // Constructors

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

    
    /** full constructor */
    public mWise(Long year, Long fileId, String fileDoc, String 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 String getUploadDate() {
        return this.uploadDate;
    }
    
    public void setUploadDate(String uploadDate) {
        this.uploadDate = uploadDate;
    }

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

	public void setuser(String username) {
		this.username = username;	
	}  

}

⌨️ 快捷键说明

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