adv.java

来自「反ajax原代码」· Java 代码 · 共 123 行

JAVA
123
字号
// 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:   Adv.java

package com.laoer.bbscs.bean;

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

public class Adv
    implements Serializable
{

    private Long id;
    private String title;
    private String url;
    private String imgSrc;
    private short type;
    private int high;
    private int width;
    private short isFlash;

    public Adv(String title, String url, String imgSrc, short type, int high, int width)
    {
        this.title = title;
        this.url = url;
        this.imgSrc = imgSrc;
        this.type = type;
        this.high = high;
        this.width = width;
    }

    public Adv()
    {
    }

    public Long getId()
    {
        return id;
    }

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

    public String getTitle()
    {
        return title;
    }

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

    public String getUrl()
    {
        return url;
    }

    public void setUrl(String url)
    {
        this.url = url;
    }

    public String getImgSrc()
    {
        return imgSrc;
    }

    public void setImgSrc(String imgSrc)
    {
        this.imgSrc = imgSrc;
    }

    public short getType()
    {
        return type;
    }

    public void setType(short type)
    {
        this.type = type;
    }

    public int getHigh()
    {
        return high;
    }

    public void setHigh(int high)
    {
        this.high = high;
    }

    public int getWidth()
    {
        return width;
    }

    public void setWidth(int width)
    {
        this.width = width;
    }

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

    public short getIsFlash()
    {
        return isFlash;
    }

    public void setIsFlash(short isFlash)
    {
        this.isFlash = isFlash;
    }
}

⌨️ 快捷键说明

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