tb01blog.java

来自「java web开发技术方案宝典」· Java 代码 · 共 92 行

JAVA
92
字号
package com.wy.actionForm;

import org.apache.struts.action.ActionForm;
import org.apache.struts.upload.FormFile;

public class Tb01blog extends ActionForm {

     private Integer id;
     private String blogTitle="";
     private String blogTime="";
     private String blogType="";
     private String blogContent="";
     private String blogPhoto="";
     private String blogTag="";
     private FormFile file;
     
    public Tb01blog() {
    }

    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    public String getBlogTitle() {
        return this.blogTitle;
    }
    
    public void setBlogTitle(String blogTitle) {
        this.blogTitle = blogTitle;
    }

    public String getBlogTime() {
        return this.blogTime;
    }
    
    public void setBlogTime(String blogTime) {
        this.blogTime = blogTime;
    }

    public String getBlogType() {
        return this.blogType;
    }
    
    public void setBlogType(String blogType) {
        this.blogType = blogType;
    }

    public String getBlogContent() {
        return this.blogContent;
    }
    
    public void setBlogContent(String blogContent) {
        this.blogContent = blogContent;
    }

    public String getBlogPhoto() {
        return this.blogPhoto;
    }
    
    public void setBlogPhoto(String blogPhoto) {
        this.blogPhoto = blogPhoto;
    }

    public String getBlogTag() {
        return this.blogTag;
    }
    
    public void setBlogTag(String blogTag) {
        this.blogTag = blogTag;
    }

	public FormFile getFile() {
		return file;
	}

	public void setFile(FormFile file) {
		this.file = file;
	}
   








}

⌨️ 快捷键说明

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