package com.newinternaldsp.Entity;

import java.util.ArrayList;

public class BannerClass {

//	ad_id	clientid	clientname	placement_id	
//	name	storagetype	filename	imageurl	width	height	
//	weight	url	bannertext	compiledlimitation
//	revenue	revenue_type	campaign_weight	htmltemplate	pmp	deal_id	secondrevenue

	public int ad_id;
	public int clientid;
	public String clientname;
	public int placement_id;
	public String name;
	public String storagetype;
	public String filename;
	public String imageurl;
	public int width;
	public int height;
	public int weight;
	public String url;
	public String bannertext;
	public String compiledlimitation;
	public double revenue;
	public int revenue_type;
	public int campaign_weight;
	public String htmltemplate;
	public int pmp;
	public int deal_id;
	public double secondrevenue;
	
	public BannerClass() {
		super();
	}

	public BannerClass(int ad_id, int clientid, String clientname, int placement_id, String name, String storagetype,
			String filename, String imageurl, int width, int height, int weight, String url, String bannertext,
			String compiledlimitation, double revenue, int revenue_type, int campaign_weight, String htmltemplate,
			int pmp, int deal_id, double secondrevenue) {
		super();
		this.ad_id = ad_id;
		this.clientid = clientid;
		this.clientname = clientname;
		this.placement_id = placement_id;
		this.name = name;
		this.storagetype = storagetype;
		this.filename = filename;
		this.imageurl = imageurl;
		this.width = width;
		this.height = height;
		this.weight = weight;
		this.url = url;
		this.bannertext = bannertext;
		this.compiledlimitation = compiledlimitation;
		this.revenue = revenue;
		this.revenue_type = revenue_type;
		this.campaign_weight = campaign_weight;
		this.htmltemplate = htmltemplate;
		this.pmp = pmp;
		this.deal_id = deal_id;
		this.secondrevenue = secondrevenue;
	}

	public int getAd_id() {
		return ad_id;
	}

	public void setAd_id(int ad_id) {
		this.ad_id = ad_id;
	}

	public int getClientid() {
		return clientid;
	}

	public void setClientid(int clientid) {
		this.clientid = clientid;
	}

	public String getClientname() {
		return clientname;
	}

	public void setClientname(String clientname) {
		this.clientname = clientname;
	}

	public int getPlacement_id() {
		return placement_id;
	}

	public void setPlacement_id(int placement_id) {
		this.placement_id = placement_id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getStoragetype() {
		return storagetype;
	}

	public void setStoragetype(String storagetype) {
		this.storagetype = storagetype;
	}

	public String getFilename() {
		return filename;
	}

	public void setFilename(String filename) {
		this.filename = filename;
	}

	public String getImageurl() {
		return imageurl;
	}

	public void setImageurl(String imageurl) {
		this.imageurl = imageurl;
	}

	public int getWidth() {
		return width;
	}

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

	public int getHeight() {
		return height;
	}

	public void setHeight(int height) {
		this.height = height;
	}

	public int getWeight() {
		return weight;
	}

	public void setWeight(int weight) {
		this.weight = weight;
	}

	public String getUrl() {
		return url;
	}

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

	public String getBannertext() {
		return bannertext;
	}

	public void setBannertext(String bannertext) {
		this.bannertext = bannertext;
	}

	public String getCompiledlimitation() {
		return compiledlimitation;
	}

	public void setCompiledlimitation(String compiledlimitation) {
		this.compiledlimitation = compiledlimitation;
	}

	public double getRevenue() {
		return revenue;
	}

	public void setRevenue(double revenue) {
		this.revenue = revenue;
	}

	public int getRevenue_type() {
		return revenue_type;
	}

	public void setRevenue_type(int revenue_type) {
		this.revenue_type = revenue_type;
	}

	public int getCampaign_weight() {
		return campaign_weight;
	}

	public void setCampaign_weight(int campaign_weight) {
		this.campaign_weight = campaign_weight;
	}

	public String getHtmltemplate() {
		return htmltemplate;
	}

	public void setHtmltemplate(String htmltemplate) {
		this.htmltemplate = htmltemplate;
	}

	public int getPmp() {
		return pmp;
	}

	public void setPmp(int pmp) {
		this.pmp = pmp;
	}

	public int getDeal_id() {
		return deal_id;
	}

	public void setDeal_id(int deal_id) {
		this.deal_id = deal_id;
	}

	public double getSecondrevenue() {
		return secondrevenue;
	}

	public void setSecondrevenue(double secondrevenue) {
		this.secondrevenue = secondrevenue;
	}

	@Override
	public String toString() {
		return "BannerClass{" + "ad_id=" + ad_id + ", clientid=" + clientid + ", clientname='" + clientname
				+ ", placement_id=" + placement_id + ", name=" + name + ", storagetype=" + storagetype + ", filename="
				+ filename + ", imageurl=" + imageurl + ", width=" + width + ", height=" + height + ", weight=" + weight
				+ ", url=" + url + ", campaign_weight=" + campaign_weight + ", pmp=" + pmp + ", secondrevenue="
				+ secondrevenue + '\'' + '}';
	}

}
