<?php

/**
 * @Entity
 * @Table(name="Position")
 */
class Prodiem_Model_Position
{
	/**
	 * @Id
	 * @Column(type="integer")
	 * @GeneratedValue(strategy="AUTO")
	 */
	private $id;
	
	/**
	 * @Column(type="string", length=100, nullable=false) 
	 */
	private $position;
	
	/**
     * @return the $id
     */
    public function getId ()
    {
        return $this->id;
    }	
}