📄 votetopic.java
字号:
package com.jeecms.auxiliary.entity;
import com.jeecms.auxiliary.entity.base.BaseVoteTopic;
public class VoteTopic extends BaseVoteTopic {
private static final long serialVersionUID = 1L;
/*[CONSTRUCTOR MARKER BEGIN]*/
public VoteTopic () {
super();
}
/**
* Constructor for primary key
*/
public VoteTopic (java.lang.Long id) {
super(id);
}
/**
* Constructor for required fields
*/
public VoteTopic (
java.lang.Long id,
com.jeecms.core.entity.Website website,
java.lang.Boolean restrictMember,
java.lang.Boolean restrictIp,
java.lang.Boolean restrictCookie,
java.lang.Boolean disabled,
java.lang.Boolean current) {
super (
id,
website,
restrictMember,
restrictIp,
restrictCookie,
disabled,
current);
}
/*[CONSTRUCTOR MARKER END]*/
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -