newsreply.java

来自「动态网站管理发布系统」· Java 代码 · 共 69 行

JAVA
69
字号
package com.ntsky.persistence;

public class NEWSReply
{

    public int replyId;
    public int newsId;
    public String user;
    public String content;
    public String replyTime;

    public NEWSReply()
    {
        user = null;
        content = null;
        replyTime = null;
    }

    public void setReplyId(int replyId)
    {
        this.replyId = replyId;
    }

    public int getReplyId()
    {
        return replyId;
    }

    public void setNewsId(int newsId)
    {
        this.newsId = newsId;
    }

    public int getNewsId()
    {
        return newsId;
    }

    public void setUser(String user)
    {
        this.user = user;
    }

    public String getUser()
    {
        return user;
    }

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

    public String getContent()
    {
        return content;
    }

    public void setReplyTime(String replyTime)
    {
        this.replyTime = replyTime;
    }

    public String getReplyTime()
    {
        return replyTime;
    }
}

⌨️ 快捷键说明

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