package com.infinite.focus.server.wall;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;


/**
 * 
 * @author Saboor
 * 
 *
 */

@Entity
public class WallPostRequest {
	
	//PK
 	@Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private long wall_post_request_id;
 	
 	private long instructor_id, wall_post_id;
 	
		
	public WallPostRequest() {
		super();
	}

	public long getWall_post_id() {
		return wall_post_id;
	}

	public void setWall_post_id(long wall_post_id) {
		this.wall_post_id = wall_post_id;
	}

	public long getWall_post_request_id() {
		return wall_post_request_id;
	}

	public void setWall_post_request_id(long wall_post_request_id) {
		this.wall_post_request_id = wall_post_request_id;
	}

	public long getInstructor_id() {
		return instructor_id;
	}

	public void setInstructor_id(long instructor_id) {
		this.instructor_id = instructor_id;
	}
	
}
