49 lines
869 B
PHP
49 lines
869 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\Company;
|
|
|
|
/**
|
|
* @Entity
|
|
* @Table(name="company_employees")
|
|
*/
|
|
class CompanyEmployee extends CompanyPerson
|
|
{
|
|
/**
|
|
* @Column(type="integer")
|
|
*/
|
|
private $salary;
|
|
|
|
/**
|
|
* @Column(type="string", length=255)
|
|
*/
|
|
private $department;
|
|
|
|
/**
|
|
* @Column(type="datetime", nullable=true)
|
|
*/
|
|
private $startDate;
|
|
|
|
public function getSalary() {
|
|
return $this->salary;
|
|
}
|
|
|
|
public function setSalary($salary) {
|
|
$this->salary = $salary;
|
|
}
|
|
|
|
public function getDepartment() {
|
|
return $this->department;
|
|
}
|
|
|
|
public function setDepartment($dep) {
|
|
$this->department = $dep;
|
|
}
|
|
|
|
public function getStartDate() {
|
|
return $this->startDate;
|
|
}
|
|
|
|
public function setStartDate($date) {
|
|
$this->startDate = $date;
|
|
}
|
|
} |