subscriptions.java
来自「论坛软件系统亦称电子公告板(BBS)系统」· Java 代码 · 共 49 行
JAVA
49 行
package cn.jsprun.domain;
public class Subscriptions implements java.io.Serializable {
private static final long serialVersionUID = -8584661456579847548L;
private SubscriptionsId id;
private Integer lastpost;
private Integer lastnotify;
public Subscriptions() {
}
public Subscriptions(SubscriptionsId id, Integer lastpost, Integer lastnotify) {
this.id = id;
this.lastpost = lastpost;
this.lastnotify = lastnotify;
}
public SubscriptionsId getId() {
return this.id;
}
public void setId(SubscriptionsId id) {
this.id = id;
}
public Integer getLastpost() {
return this.lastpost;
}
public void setLastpost(Integer lastpost) {
this.lastpost = lastpost;
}
public Integer getLastnotify() {
return this.lastnotify;
}
public void setLastnotify(Integer lastnotify) {
this.lastnotify = lastnotify;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?