track_c_countries.class.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. namespace Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. *
  6. * @license see /license.txt
  7. * @author autogenerated
  8. */
  9. class TrackCCountries extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\TrackCCountriesRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\TrackCCountriesRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\TrackCCountries
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var string $code
  29. */
  30. protected $code;
  31. /**
  32. * @var string $country
  33. */
  34. protected $country;
  35. /**
  36. * @var integer $counter
  37. */
  38. protected $counter;
  39. /**
  40. * Get id
  41. *
  42. * @return integer
  43. */
  44. public function get_id()
  45. {
  46. return $this->id;
  47. }
  48. /**
  49. * Set code
  50. *
  51. * @param string $value
  52. * @return TrackCCountries
  53. */
  54. public function set_code($value)
  55. {
  56. $this->code = $value;
  57. return $this;
  58. }
  59. /**
  60. * Get code
  61. *
  62. * @return string
  63. */
  64. public function get_code()
  65. {
  66. return $this->code;
  67. }
  68. /**
  69. * Set country
  70. *
  71. * @param string $value
  72. * @return TrackCCountries
  73. */
  74. public function set_country($value)
  75. {
  76. $this->country = $value;
  77. return $this;
  78. }
  79. /**
  80. * Get country
  81. *
  82. * @return string
  83. */
  84. public function get_country()
  85. {
  86. return $this->country;
  87. }
  88. /**
  89. * Set counter
  90. *
  91. * @param integer $value
  92. * @return TrackCCountries
  93. */
  94. public function set_counter($value)
  95. {
  96. $this->counter = $value;
  97. return $this;
  98. }
  99. /**
  100. * Get counter
  101. *
  102. * @return integer
  103. */
  104. public function get_counter()
  105. {
  106. return $this->counter;
  107. }
  108. }