📄 reply.java
字号:
package com.ntsky.bbs.service;/** * <p>Title: Ntsky OpenSource BBS</p> * <p>Description: 用户回复 </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: 天网文化发展有限公司</p> * @author 姚君林 * @version 1.0 */public interface Reply { /** * 回复人的ID * @return String */ public int getRepId(); public void setRepId(int repId); /** * 回复标题ID * @return String */ public int getRepTopicId(); public void setRepTopicId(int repTopicId); /** * 回复的用户ID * @return String */ public String getRepUsrName(); public void setRepUsrName(String repUsrName); /** * 回复内容 * @return String */ public String getRepContent(); public void setRepContent(String repContent); /** * 回复时间 * @return String */ public String getRepTime(); public void setRepTime(String repTime); /** * 回复人的ip * @return String */ public String getRepIp(); public void setRepIp(String repIp); /** * 回复的动作 * @return String */ public String getAction(); public void setAction(String action);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -