EntityCCalendarEventRepeatNot.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php
  2. use Doctrine\ORM\Mapping as ORM;
  3. /**
  4. * EntityCCalendarEventRepeatNot
  5. *
  6. * @Table(name="c_calendar_event_repeat_not")
  7. * @Entity
  8. */
  9. class EntityCCalendarEventRepeatNot
  10. {
  11. /**
  12. * @var integer
  13. *
  14. * @Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  15. * @Id
  16. * @GeneratedValue(strategy="NONE")
  17. */
  18. private $cId;
  19. /**
  20. * @var integer
  21. *
  22. * @Column(name="cal_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  23. * @Id
  24. * @GeneratedValue(strategy="NONE")
  25. */
  26. private $calId;
  27. /**
  28. * @var integer
  29. *
  30. * @Column(name="cal_date", type="integer", precision=0, scale=0, nullable=false, unique=false)
  31. * @Id
  32. * @GeneratedValue(strategy="NONE")
  33. */
  34. private $calDate;
  35. /**
  36. * Set cId
  37. *
  38. * @param integer $cId
  39. * @return EntityCCalendarEventRepeatNot
  40. */
  41. public function setCId($cId)
  42. {
  43. $this->cId = $cId;
  44. return $this;
  45. }
  46. /**
  47. * Get cId
  48. *
  49. * @return integer
  50. */
  51. public function getCId()
  52. {
  53. return $this->cId;
  54. }
  55. /**
  56. * Set calId
  57. *
  58. * @param integer $calId
  59. * @return EntityCCalendarEventRepeatNot
  60. */
  61. public function setCalId($calId)
  62. {
  63. $this->calId = $calId;
  64. return $this;
  65. }
  66. /**
  67. * Get calId
  68. *
  69. * @return integer
  70. */
  71. public function getCalId()
  72. {
  73. return $this->calId;
  74. }
  75. /**
  76. * Set calDate
  77. *
  78. * @param integer $calDate
  79. * @return EntityCCalendarEventRepeatNot
  80. */
  81. public function setCalDate($calDate)
  82. {
  83. $this->calDate = $calDate;
  84. return $this;
  85. }
  86. /**
  87. * Get calDate
  88. *
  89. * @return integer
  90. */
  91. public function getCalDate()
  92. {
  93. return $this->calDate;
  94. }
  95. }