namespace Test;

class Entity implements \Oro\Bundle\EntityExtendBundle\Entity\ExtendEntityInterface
{
    protected $field_2;
    protected $field1;

    public function setField2($value)
    {
        $this->field_2 = $value; return $this;
    }

    public function setField1($value)
    {
        $this->field1 = $value; return $this;
    }

    public function getField2()
    {
        return $this->field_2;
    }

    public function getField1()
    {
        return $this->field1;
    }

    public function __construct()
    {
    }
}
