package com.example.demo.redisentity;

import java.time.LocalDateTime;
import java.util.UUID;

public class EndPointRedis {

	private UUID endpoint_id;
	private UUID demand_partner;
	private String endpoint_name;
	private double bid_floor;
	private String seller_id;
	private int adtype;
	private String dsp_params;
	private LocalDateTime created_at;
	private UUID created_by;
	private LocalDateTime updated_at;
	private UUID updated_by;
	private int is_deleted;
	private LocalDateTime deleted_at;
	private UUID deleted_by;
	
	public UUID getEndpoint_id() {
		return endpoint_id;
	}
	public void setEndpoint_id(UUID endpoint_id) {
		this.endpoint_id = endpoint_id;
	}
	public UUID getDemand_partner() {
		return demand_partner;
	}
	public void setDemand_partner(UUID demand_partner) {
		this.demand_partner = demand_partner;
	}
	public String getEndpoint_name() {
		return endpoint_name;
	}
	public void setEndpoint_name(String endpoint_name) {
		this.endpoint_name = endpoint_name;
	}
	public double getBid_floor() {
		return bid_floor;
	}
	public void setBid_floor(double bid_floor) {
		this.bid_floor = bid_floor;
	}
	public String getSeller_id() {
		return seller_id;
	}
	public void setSeller_id(String seller_id) {
		this.seller_id = seller_id;
	}
	public LocalDateTime getCreated_at() {
		return created_at;
	}
	public void setCreated_at(LocalDateTime created_at) {
		this.created_at = created_at;
	}
	public UUID getCreated_by() {
		return created_by;
	}
	public void setCreated_by(UUID created_by) {
		this.created_by = created_by;
	}
	public LocalDateTime getUpdated_at() {
		return updated_at;
	}
	public void setUpdated_at(LocalDateTime updated_at) {
		this.updated_at = updated_at;
	}
	public UUID getUpdated_by() {
		return updated_by;
	}
	public void setUpdated_by(UUID updated_by) {
		this.updated_by = updated_by;
	}
	public int getIs_deleted() {
		return is_deleted;
	}
	public void setIs_deleted(int is_deleted) {
		this.is_deleted = is_deleted;
	}
	public LocalDateTime getDeleted_at() {
		return deleted_at;
	}
	public void setDeleted_at(LocalDateTime deleted_at) {
		this.deleted_at = deleted_at;
	}
	public UUID getDeleted_by() {
		return deleted_by;
	}
	public void setDeleted_by(UUID deleted_by) {
		this.deleted_by = deleted_by;
	}

	public int getAdtype() {
		return adtype;
	}
	public void setAdtype(int adtype) {
		this.adtype = adtype;
	}
	public String getDsp_params() {
		return dsp_params;
	}
	public void setDsp_params(String dsp_params) {
		this.dsp_params = dsp_params;
	}
	
	
	
}
