votetopic.java
来自「JEECSM是JavaEE版网站管理系统(Java Enterprise Edi」· Java 代码 · 共 47 行
JAVA
47 行
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 + =
减小字号Ctrl + -
显示快捷键?