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

📄 caches.java

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JAVA
字号:
package cn.jsprun.domain;

public class Caches  implements java.io.Serializable {

	private static final long serialVersionUID = -1568596288192648070L;
	private String cachename;	
     private Short type;
     private Integer dateline;
     private Integer expiration;
     private String data;
    public Caches() {
    }
    public Caches(String cachename, Short type, Integer dateline, Integer expiration, String data) {
        this.cachename = cachename;
        this.type = type;
        this.dateline = dateline;
        this.expiration = expiration;
        this.data = data;
    }


    public String getCachename() {
        return this.cachename;
    }
    
    public void setCachename(String cachename) {
        this.cachename = cachename;
    }

    public Short getType() {
        return this.type;
    }
    
    public void setType(Short type) {
        this.type = type;
    }

    public Integer getDateline() {
        return this.dateline;
    }
    
    public void setDateline(Integer dateline) {
        this.dateline = dateline;
    }

    public Integer getExpiration() {
        return this.expiration;
    }
    
    public void setExpiration(Integer expiration) {
        this.expiration = expiration;
    }

    public String getData() {
        return this.data;
    }
    
    public void setData(String data) {
        this.data = data;
    }
   








}

⌨️ 快捷键说明

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