123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class TrackCCountries extends \Entity
- {
- /**
- * @return \Entity\Repository\TrackCCountriesRepository
- */
- public static function repository(){
- return \Entity\Repository\TrackCCountriesRepository::instance();
- }
- /**
- * @return \Entity\TrackCCountries
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var string $code
- */
- protected $code;
- /**
- * @var string $country
- */
- protected $country;
- /**
- * @var integer $counter
- */
- protected $counter;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set code
- *
- * @param string $value
- * @return TrackCCountries
- */
- public function set_code($value)
- {
- $this->code = $value;
- return $this;
- }
- /**
- * Get code
- *
- * @return string
- */
- public function get_code()
- {
- return $this->code;
- }
- /**
- * Set country
- *
- * @param string $value
- * @return TrackCCountries
- */
- public function set_country($value)
- {
- $this->country = $value;
- return $this;
- }
- /**
- * Get country
- *
- * @return string
- */
- public function get_country()
- {
- return $this->country;
- }
- /**
- * Set counter
- *
- * @param integer $value
- * @return TrackCCountries
- */
- public function set_counter($value)
- {
- $this->counter = $value;
- return $this;
- }
- /**
- * Get counter
- *
- * @return integer
- */
- public function get_counter()
- {
- return $this->counter;
- }
- }
|