📄 topictype.java
字号:
/*
* Created on 2005-8-4
* Last modified on 2007-3-17
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.model;
public class TopicType implements java.io.Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private int typeId = 0;
private int topicId = 0;
private int replyId = 0;
private byte typeInfo = 0; /* 帖子类型信息 */
private double typeNum = 0;
private String userName = "";
private long createDateTime = 0;
private int userId = 0;
public long getCreateDateTime() {
return createDateTime;
}
public void setCreateDateTime(long createDateTime) {
this.createDateTime = createDateTime;
}
public int getReplyId() {
return replyId;
}
public void setReplyId(int replyId) {
this.replyId = replyId;
}
public int getTopicId() {
return topicId;
}
public void setTopicId(int topicId) {
this.topicId = topicId;
}
public int getTypeId() {
return typeId;
}
public void setTypeId(int typeId) {
this.typeId = typeId;
}
public byte getTypeInfo() {
return typeInfo;
}
public void setTypeInfo(byte typeInfo) {
this.typeInfo = typeInfo;
}
public double getTypeNum() {
return typeNum;
}
public void setTypeNum(double typeNum) {
this.typeNum = typeNum;
}
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -