12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class TrackCOs extends \Entity
- {
- /**
- * @return \Entity\Repository\TrackCOsRepository
- */
- public static function repository(){
- return \Entity\Repository\TrackCOsRepository::instance();
- }
- /**
- * @return \Entity\TrackCOs
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var string $os
- */
- protected $os;
- /**
- * @var integer $counter
- */
- protected $counter;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set os
- *
- * @param string $value
- * @return TrackCOs
- */
- public function set_os($value)
- {
- $this->os = $value;
- return $this;
- }
- /**
- * Get os
- *
- * @return string
- */
- public function get_os()
- {
- return $this->os;
- }
- /**
- * Set counter
- *
- * @param integer $value
- * @return TrackCOs
- */
- public function set_counter($value)
- {
- $this->counter = $value;
- return $this;
- }
- /**
- * Get counter
- *
- * @return integer
- */
- public function get_counter()
- {
- return $this->counter;
- }
- }
|