topictype.java

来自「这是一款最新的野蔷薇论坛源码,有需要的朋友可以尽情下载」· Java 代码 · 共 96 行

JAVA
96
字号
/*
 * Created on 2005-8-4
 * Last modified on 2007-3-17
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.dao.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 + =
减小字号Ctrl + -
显示快捷键?