tbbbs.java

来自「构建一个以商品销售为主体的电子商城,功能描叙如下: 1.按商品大类及商品名称进」· Java 代码 · 共 60 行

JAVA
60
字号
package com.lzw.model;
import java.util.Date;
public class TbBbs  implements java.io.Serializable {
     private Integer id;
     private String title;
     private String content;
     private Date intime;
    public TbBbs() {
    }
    public TbBbs(Integer id, String content) {
        this.id = id;
        this.content = content;
    }
    public TbBbs(Integer id, String title, String content, Date intime) {
        this.id = id;
        this.title = title;
        this.content = content;
        this.intime = intime;
    }
    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    public String getTitle() {
        return this.title;
    }
    
    public void setTitle(String title) {
        this.title = title;
    }

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

    public Date getIntime() {
        return this.intime;
    }
    
    public void setIntime(Date intime) {
        this.intime = intime;
    }
   








}

⌨️ 快捷键说明

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