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

📄 contentvo.java

📁 spring+hibernate+struts开发的校务oa系统
💻 JAVA
字号:
package com.yondor.oa.db.content.dao;

public class ContentVO {

    // Fields    

     private Long contentid;
     private String content;
     private Long preid;


    // Constructors

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

    
    /** full constructor */
    public ContentVO(String content, Long preid) {
        this.content = content;
        this.preid = preid;
    }

   
    // Property accessors

    public Long getContentid() {
        return this.contentid;
    }
    
    public void setContentid(Long contentid) {
        this.contentid = contentid;
    }

    public String getContent() {
        return this.content;
    }
    
    public void setContent(String content) {
        this.content = content;
    }

    public Long getPreid() {
        return this.preid;
    }
    
    public void setPreid(Long preid) {
        this.preid = preid;
    }
   
}

⌨️ 快捷键说明

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