personal_agenda_repeat_not.class.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 PersonalAgendaRepeatNot extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\PersonalAgendaRepeatNotRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\PersonalAgendaRepeatNotRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\PersonalAgendaRepeatNot
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $cal_id
  25. */
  26. protected $cal_id;
  27. /**
  28. * @var integer $cal_date
  29. */
  30. protected $cal_date;
  31. /**
  32. * Set cal_id
  33. *
  34. * @param integer $value
  35. * @return PersonalAgendaRepeatNot
  36. */
  37. public function set_cal_id($value)
  38. {
  39. $this->cal_id = $value;
  40. return $this;
  41. }
  42. /**
  43. * Get cal_id
  44. *
  45. * @return integer
  46. */
  47. public function get_cal_id()
  48. {
  49. return $this->cal_id;
  50. }
  51. /**
  52. * Set cal_date
  53. *
  54. * @param integer $value
  55. * @return PersonalAgendaRepeatNot
  56. */
  57. public function set_cal_date($value)
  58. {
  59. $this->cal_date = $value;
  60. return $this;
  61. }
  62. /**
  63. * Get cal_date
  64. *
  65. * @return integer
  66. */
  67. public function get_cal_date()
  68. {
  69. return $this->cal_date;
  70. }
  71. }