⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commend.java

📁 反ajax原代码
💻 JAVA
字号:
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   Commend.java

package com.laoer.bbscs.bean;

import java.io.Serializable;
import org.apache.commons.lang.builder.ToStringBuilder;

public class Commend
    implements Serializable
{

    private Long id;
    private long postID;
    private long postID2;
    private long bid;
    private String title;
    private short isBull;
    private String boardName;
    private long addTime;

    public Commend(long postID, long postID2, long bid, String title, 
            short isBull, String boardName, long addTime)
    {
        this.postID = postID;
        this.postID2 = postID2;
        this.bid = bid;
        this.title = title;
        this.isBull = isBull;
        this.boardName = boardName;
        this.addTime = addTime;
    }

    public Commend()
    {
    }

    public Commend(String title, short isBull)
    {
        this.title = title;
        this.isBull = isBull;
    }

    public Long getId()
    {
        return id;
    }

    public void setId(Long id)
    {
        this.id = id;
    }

    public long getPostID()
    {
        return postID;
    }

    public void setPostID(long postID)
    {
        this.postID = postID;
    }

    public long getPostID2()
    {
        return postID2;
    }

    public void setPostID2(long postID2)
    {
        this.postID2 = postID2;
    }

    public long getBid()
    {
        return bid;
    }

    public void setBid(long bid)
    {
        this.bid = bid;
    }

    public String getTitle()
    {
        return title;
    }

    public void setTitle(String title)
    {
        this.title = title;
    }

    public short getIsBull()
    {
        return isBull;
    }

    public void setIsBull(short isBull)
    {
        this.isBull = isBull;
    }

    public String getBoardName()
    {
        return boardName;
    }

    public void setBoardName(String boardName)
    {
        this.boardName = boardName;
    }

    public long getAddTime()
    {
        return addTime;
    }

    public void setAddTime(long addTime)
    {
        this.addTime = addTime;
    }

    public String toString()
    {
        return (new ToStringBuilder(this)).append("id", getId()).toString();
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -