commentreply.java
来自「达内网上购物系统」· Java 代码 · 共 55 行
JAVA
55 行
package org.whatisjava.dang.domain;
public class CommentReply implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private Integer id;
private Integer commentId;
private User user;
private long time;
private String content;
public CommentReply() {
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCommentId() {
return this.commentId;
}
public void setCommentId(Integer commentId) {
this.commentId = commentId;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public long getTime() {
return this.time;
}
public void setTime(long time) {
this.time = time;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?