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

📄 newsformbean.java

📁 精通EJB3源码
💻 JAVA
字号:
package com.foshanshop.struts.formbean;

import java.util.Date;

import org.apache.struts.action.ActionForm;

public class NewsFormBean extends ActionForm{
	private static final long serialVersionUID = 5585830825063765659L;
	private Integer newsid;
    /** 新闻标题 **/
    private String title;
    /** 新闻内容 **/
    private String content;
    /** 发布日期 **/
    private Date createdate;
    /** 新闻来源 **/
    private String source;
    /** 开始索引 **/
    private int firstResult;
    /** 获取记录数 **/
    private int maxResult;
    /** 目录ID **/
    private Integer catid;
    /** 目录名称 **/
    private String catalogname;
    
    public String getCatalogname() {
		return catalogname;
	}
	public void setCatalogname(String catalogname) {
		this.catalogname = catalogname;
	}
	public Integer getCatid() {
		return catid;
	}
	public void setCatid(Integer catid) {
		this.catid = catid;
	}
	public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    public Date getCreatedate() {
        return createdate;
    }
    public void setCreatedate(Date createdate) {
        this.createdate = createdate;
    }
    public int getFirstResult() {
        return firstResult;
    }
    public void setFirstResult(int firstResult) {
        this.firstResult = firstResult;
    }
    public int getMaxResult() {
        return maxResult;
    }
    public void setMaxResult(int maxResult) {
        this.maxResult = maxResult;
    }
    public Integer getNewsid() {
        return newsid;
    }
    public void setNewsid(Integer newsid) {
        this.newsid = newsid;
    }
    public String getSource() {
        return source;
    }
    public void setSource(String source) {
        this.source = source;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
}

⌨️ 快捷键说明

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