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

📄 abstractattachment.java

📁 负责公文的传输及一些处理功能
💻 JAVA
字号:
package com.example.gw.attachment;


import com.example.gw.senddocform.SendDocForm;
/**
 * AbstractAttachment generated by MyEclipse - Hibernate Tools
 */
public abstract class AbstractAttachment  implements java.io.Serializable {


    // Fields    

     private Integer fileId;
     //private SendDocForm sendDocForm;
     private Integer itemId;
     private String title;
     private String path;
     private String site;
     private String fileName;
     private Integer fileSize;
     private String mimeType;
     private String tableName;
     private String orderby;
     private String status;


    // Constructors

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

    
    /** full constructor */
    public AbstractAttachment(Integer itemId, String title, String path, String site, String fileName, Integer fileSize, String mimeType, String tableName, String orderby, String status) {
        //this.sendDocForm = sendDocForm;
    	this.itemId = itemId;
        this.title = title;
        this.path = path;
        this.site = site;
        this.fileName = fileName;
        this.fileSize = fileSize;
        this.mimeType = mimeType;
        this.tableName = tableName;
        this.orderby = orderby;
        this.status = status;
    }

   
    // Property accessors

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

    public void setItemId(Integer itemId){
    	this.itemId = itemId;
    }
    
    public Integer getItemId(){
    	return itemId;
    }
    
    public String getTitle() {
        return this.title;
    }
    
    public void setTitle(String title) {
        this.title = title;
    }

    public String getPath() {
        return this.path;
    }
    
    public void setPath(String path) {
        this.path = path;
    }

    public String getSite() {
        return this.site;
    }
    
    public void setSite(String site) {
        this.site = site;
    }

    public String getFileName() {
        return this.fileName;
    }
    
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public Integer getFileSize() {
        return this.fileSize;
    }
    
    public void setFileSize(Integer fileSize) {
        this.fileSize = fileSize;
    }

    public String getMimeType() {
        return this.mimeType;
    }
    
    public void setMimeType(String mimeType) {
        this.mimeType = mimeType;
    }

    public String getTableName() {
        return this.tableName;
    }
    
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }

    public String getOrderby() {
        return this.orderby;
    }
    
    public void setOrderby(String orderby) {
        this.orderby = orderby;
    }

    public String getStatus() {
        return this.status;
    }
    
    public void setStatus(String status) {
        this.status = status;
    }
   








}

⌨️ 快捷键说明

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