dropbox_person.class.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 DropboxPerson extends \CourseEntity
  10. {
  11. /**
  12. * @return \Entity\Repository\DropboxPersonRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\DropboxPersonRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\DropboxPerson
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $c_id
  25. */
  26. protected $c_id;
  27. /**
  28. * @var integer $file_id
  29. */
  30. protected $file_id;
  31. /**
  32. * @var integer $user_id
  33. */
  34. protected $user_id;
  35. /**
  36. * Set c_id
  37. *
  38. * @param integer $value
  39. * @return DropboxPerson
  40. */
  41. public function set_c_id($value)
  42. {
  43. $this->c_id = $value;
  44. return $this;
  45. }
  46. /**
  47. * Get c_id
  48. *
  49. * @return integer
  50. */
  51. public function get_c_id()
  52. {
  53. return $this->c_id;
  54. }
  55. /**
  56. * Set file_id
  57. *
  58. * @param integer $value
  59. * @return DropboxPerson
  60. */
  61. public function set_file_id($value)
  62. {
  63. $this->file_id = $value;
  64. return $this;
  65. }
  66. /**
  67. * Get file_id
  68. *
  69. * @return integer
  70. */
  71. public function get_file_id()
  72. {
  73. return $this->file_id;
  74. }
  75. /**
  76. * Set user_id
  77. *
  78. * @param integer $value
  79. * @return DropboxPerson
  80. */
  81. public function set_user_id($value)
  82. {
  83. $this->user_id = $value;
  84. return $this;
  85. }
  86. /**
  87. * Get user_id
  88. *
  89. * @return integer
  90. */
  91. public function get_user_id()
  92. {
  93. return $this->user_id;
  94. }
  95. }