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

📄 notereply.java

📁 动态网站管理发布系统
💻 JAVA
字号:
package com.ntsky.persistence;

public class NOTEReply
{

    public int replyId;
    public int noteId;
    public String content;
    public String replyTime;

    public NOTEReply()
    {
        content = null;
        replyTime = null;
    }

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

    public int getReplyId()
    {
        return replyId;
    }

    public void setNoteId(int noteId)
    {
        this.noteId = noteId;
    }

    public int getNoteId()
    {
        return noteId;
    }

    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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -