| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514 |
- <?php
- namespace Opentalent\OtWidgets\Domain\Model;
- use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
- /**
- * Organization
- */
- class Organization extends AbstractEntity
- {
- /**
- * id
- *
- * @var string
- */
- protected $id = '';
- /**
- * type
- *
- * @var string
- */
- protected $type = '';
- /**
- * subDomain
- *
- * @var string
- */
- protected $subDomain = '';
- /**
- * name
- *
- * @var string
- */
- protected $name = '';
- /**
- * slug
- *
- * @var string
- */
- protected $slug = '';
- /**
- * principalType
- *
- * @var string
- */
- protected $principalType = '';
- /**
- * description
- *
- * @var string
- */
- protected $description = '';
- /**
- * categories
- *
- * @var int
- */
- protected $categories = 0;
- /**
- * addressCity
- *
- * @var string
- */
- protected $addressCity = '';
- /**
- * postalCode
- *
- * @var string
- */
- protected $postalCode = '';
- /**
- * streetAdress
- *
- * @var string
- */
- protected $streetAdress = '';
- /**
- * latitude
- *
- * @var float
- */
- protected $latitude = 0.0;
- /**
- * longitude
- *
- * @var float
- */
- protected $longitude = 0.0;
- /**
- * country
- *
- * @var string
- */
- protected $country = '';
- /**
- * logo
- *
- * @var string
- */
- protected $logo = '';
- /**
- * parentId
- *
- * @var int
- */
- protected $parentId = 0;
- /**
- * parentName
- *
- * @var string
- */
- protected $parentName = '';
- /**
- * parentSubdomain
- *
- * @var string
- */
- protected $parentSubdomain = '';
- /**
- * Returns the id
- *
- * @return string $id
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Sets the id
- *
- * @param string $id
- * @return void
- */
- public function setId($id)
- {
- $this->id = $id;
- }
- /**
- * Returns the type
- *
- * @return string $type
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Sets the type
- *
- * @param string $type
- * @return void
- */
- public function setType($type)
- {
- $this->type = $type;
- }
- /**
- * Returns the subDomain
- *
- * @return string $subDomain
- */
- public function getSubDomain()
- {
- return $this->subDomain;
- }
- /**
- * Sets the subDomain
- *
- * @param string $subDomain
- * @return void
- */
- public function setSubDomain($subDomain)
- {
- $this->subDomain = $subDomain;
- }
- /**
- * Returns the name
- *
- * @return string $name
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * Sets the name
- *
- * @param string $name
- * @return void
- */
- public function setName($name)
- {
- $this->name = $name;
- }
- /**
- * Returns the slug
- *
- * @return string $slug
- */
- public function getSlug()
- {
- return $this->slug;
- }
- /**
- * Sets the slug
- *
- * @param string $slug
- * @return void
- */
- public function setSlug($slug)
- {
- $this->slug = $slug;
- }
- /**
- * Returns the principalType
- *
- * @return string $principalType
- */
- public function getPrincipalType()
- {
- return $this->principalType;
- }
- /**
- * Sets the principalType
- *
- * @param string $principalType
- * @return void
- */
- public function setPrincipalType($principalType)
- {
- $this->principalType = $principalType;
- }
- /**
- * Returns the description
- *
- * @return string $description
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * Sets the description
- *
- * @param string $description
- * @return void
- */
- public function setDescription($description)
- {
- $this->description = $description;
- }
- /**
- * Returns the categories
- *
- * @return int $categories
- */
- public function getCategories()
- {
- return $this->categories;
- }
- /**
- * Sets the categories
- *
- * @param int $categories
- * @return void
- */
- public function setCategories($categories)
- {
- $this->categories = $categories;
- }
- /**
- * Returns the addressCity
- *
- * @return string $addressCity
- */
- public function getAddressCity()
- {
- return $this->addressCity;
- }
- /**
- * Sets the addressCity
- *
- * @param string $addressCity
- * @return void
- */
- public function setAddressCity($addressCity)
- {
- $this->addressCity = $addressCity;
- }
- /**
- * Returns the postalCode
- *
- * @return string $postalCode
- */
- public function getPostalCode()
- {
- return $this->postalCode;
- }
- /**
- * Sets the postalCode
- *
- * @param string $postalCode
- * @return void
- */
- public function setPostalCode($postalCode)
- {
- $this->postalCode = $postalCode;
- }
- /**
- * Returns the streetAdress
- *
- * @return string $streetAdress
- */
- public function getStreetAdress()
- {
- return $this->streetAdress;
- }
- /**
- * Sets the streetAdress
- *
- * @param string $streetAdress
- * @return void
- */
- public function setStreetAdress($streetAdress)
- {
- $this->streetAdress = $streetAdress;
- }
- /**
- * Returns the latitude
- *
- * @return float $latitude
- */
- public function getLatitude()
- {
- return $this->latitude;
- }
- /**
- * Sets the latitude
- *
- * @param float $latitude
- * @return void
- */
- public function setLatitude($latitude)
- {
- $this->latitude = $latitude;
- }
- /**
- * Returns the longitude
- *
- * @return float $longitude
- */
- public function getLongitude()
- {
- return $this->longitude;
- }
- /**
- * Sets the longitude
- *
- * @param float $longitude
- * @return void
- */
- public function setLongitude($longitude)
- {
- $this->longitude = $longitude;
- }
- /**
- * Returns the country
- *
- * @return string $country
- */
- public function getCountry()
- {
- return $this->country;
- }
- /**
- * Sets the country
- *
- * @param string $country
- * @return void
- */
- public function setCountry($country)
- {
- $this->country = $country;
- }
- /**
- * Returns the logo
- *
- * @return string $logo
- */
- public function getLogo()
- {
- return $this->logo;
- }
- /**
- * Sets the logo
- *
- * @param string $logo
- * @return void
- */
- public function setLogo($logo)
- {
- $this->logo = $logo;
- }
- /**
- * Returns the parentId
- *
- * @return string $parentId
- */
- public function getParentId()
- {
- return $this->parentId;
- }
- /**
- * Sets the parentName
- *
- * @param string $parentId
- * @return void
- */
- public function setParentId($parentId)
- {
- $this->parentId = $parentId;
- }
- /**
- * Returns the parentName
- *
- * @return string $parentName
- */
- public function getParentName()
- {
- return $this->parentName;
- }
- /**
- * Sets the parentName
- *
- * @param string $parentName
- * @return void
- */
- public function setParentName($parentName)
- {
- $this->parentName = $parentName;
- }
- /**
- * Returns the parentSubdomain
- *
- * @return string $parentSubdomain
- */
- public function getParentSubdomain()
- {
- return $this->parentSubdomain;
- }
- /**
- * Sets the parentSubdomain
- *
- * @param string $parentSubdomain
- * @return void
- */
- public function setParentSubdomain($parentSubdomain)
- {
- $this->parentSubdomain = $parentSubdomain;
- }
- }
|