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