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

📄 tb01blog.java

📁 java web开发技术方案宝典
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -