123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- use Doctrine\ORM\Mapping as ORM;
- /**
- * EntityTrackCCountries
- *
- * @Table(name="track_c_countries")
- * @Entity
- */
- class EntityTrackCCountries
- {
- /**
- * @var integer
- *
- * @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @Id
- * @GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @var string
- *
- * @Column(name="code", type="string", length=40, precision=0, scale=0, nullable=false, unique=false)
- */
- private $code;
- /**
- * @var string
- *
- * @Column(name="country", type="string", length=50, precision=0, scale=0, nullable=false, unique=false)
- */
- private $country;
- /**
- * @var integer
- *
- * @Column(name="counter", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $counter;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set code
- *
- * @param string $code
- * @return EntityTrackCCountries
- */
- public function setCode($code)
- {
- $this->code = $code;
- return $this;
- }
- /**
- * Get code
- *
- * @return string
- */
- public function getCode()
- {
- return $this->code;
- }
- /**
- * Set country
- *
- * @param string $country
- * @return EntityTrackCCountries
- */
- public function setCountry($country)
- {
- $this->country = $country;
- return $this;
- }
- /**
- * Get country
- *
- * @return string
- */
- public function getCountry()
- {
- return $this->country;
- }
- /**
- * Set counter
- *
- * @param integer $counter
- * @return EntityTrackCCountries
- */
- public function setCounter($counter)
- {
- $this->counter = $counter;
- return $this;
- }
- /**
- * Get counter
- *
- * @return integer
- */
- public function getCounter()
- {
- return $this->counter;
- }
- }
|