src/Entity/ActivityAssignments.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ActivityAssignmentsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ActivityAssignmentsRepository::class)
  7.  */
  8. class ActivityAssignments
  9. {
  10.     public const YET_TO_BE_FILLED 0;
  11.     public const ALREADY_FILLED 1;
  12.     public const TABLE_NAME 'activity_assignments';
  13.     public const HISTORY_RING_ID 17119;
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @ORM\Column(name="conference_id", type="integer", nullable=false)
  22.      */
  23.     private $conference_id;
  24.      /**
  25.      * @ORM\Column(name="school_year", type="string", length=20, nullable=false)
  26.      */
  27.     private $school_year;
  28.     /**
  29.      * @ORM\Column(name="season_id", type="integer", nullable=false)
  30.      */
  31.     private $season_id;
  32.     /**
  33.      * @ORM\Column(name="season_name", type="string", length=128, nullable=false)
  34.      */
  35.     private $season_name;
  36.     /**
  37.      * @ORM\Column(type="smallint")
  38.      */
  39.     private $status;
  40.     /**
  41.      * @ORM\Column(type="string", length=20)
  42.      */
  43.     private $activity_id;
  44.     /**
  45.      * @ORM\Column(type="string", length=128)
  46.      */
  47.     private $activity_name;
  48.     /**
  49.      * @ORM\Column(type="date")
  50.      */
  51.     private $date_start;
  52.     /**
  53.      * @ORM\Column(type="date", nullable=true)
  54.      */
  55.     private $date_end;
  56.     /**
  57.      * @ORM\Column(type="time", nullable=true)
  58.      */
  59.     private $time_start;
  60.     /**
  61.      * @ORM\Column(type="time", nullable=true)
  62.      */
  63.     private $time_end;
  64.     /**
  65.      * @ORM\Column(type="string", length=128, nullable=true)
  66.      */
  67.     private $location;
  68.     /**
  69.      * @ORM\Column(name="home_id", type="integer", nullable=true)
  70.      */
  71.     private $home_id;
  72.     /**
  73.      * @ORM\Column(type="string", length=128, nullable=true)
  74.      */
  75.     private $home;
  76.     /**
  77.      * @ORM\Column(type="string", length=128, nullable=true)
  78.      */
  79.     private $away;
  80.     /**
  81.      * @ORM\Column(type="smallint", nullable=true)
  82.      */
  83.     private $is_fs_connected;
  84.     /**
  85.      * @ORM\Column(type="text", nullable=true)
  86.      */
  87.     private $notes;
  88.     /**
  89.      * @ORM\Column(type="smallint", nullable=true)
  90.      */
  91.     private $is_cancelled_event;
  92.     /**
  93.      * @ORM\Column(type="smallint", nullable=true)
  94.      */
  95.     private $is_posponed_event;
  96.     /**
  97.      * @ORM\Column(type="smallint", nullable=true)
  98.      */
  99.     private $is_away_event;
  100.     /**
  101.      * @ORM\Column(type="bigint")
  102.      */
  103.     private $event_id;
  104.     /**
  105.      * @ORM\Column(type="date")
  106.      */
  107.     private $event_date;
  108.     /**
  109.      * @ORM\Column(type="boolean", nullable=true)
  110.      */
  111.     private $is_self_assign;
  112.     /**
  113.      * @ORM\Column(type="boolean", nullable=true)
  114.      */
  115.     private $is_send_tawsa;
  116.     /**
  117.      * @ORM\Column(type="blob", nullable=true)
  118.      */
  119.     private $away_infos;
  120.     /**
  121.      * @ORM\Column(type="bigint")
  122.      */
  123.     private $date_id;
  124.     /**
  125.      * @ORM\Column(type="bigint")
  126.      */
  127.     private $worksheet_id;
  128.     /**
  129.      * @ORM\Column(type="string", length=20, nullable=true)
  130.      */
  131.     private $event_status_id;
  132.     /**
  133.      * @ORM\Column(type="string", length=60, nullable=true)
  134.      */
  135.     private $event_status_name;
  136.     /**
  137.      * @ORM\Column(type="smallint", nullable=true)
  138.      */
  139.     private $event_status_active;
  140.     /**
  141.      * @ORM\Column(type="blob", nullable=true)
  142.      */
  143.     private $event_updated_details;
  144.     public function getId(): ?int
  145.     {
  146.         return $this->id;
  147.     }
  148.     public function getConferenceId(): ?int
  149.     {
  150.         return $this->conference_id;
  151.     }
  152.     public function setConferenceId(int $conference_id): self
  153.     {
  154.         $this->conference_id $conference_id;
  155.         return $this;
  156.     }
  157.     public function getSchoolYear(): ?string
  158.     {
  159.         return $this->school_year;
  160.     }
  161.     public function setSchoolYear(string $school_year): self
  162.     {
  163.         $this->school_year $school_year;
  164.         return $this;
  165.     }
  166.     public function getSeasonId(): ?int
  167.     {
  168.         return $this->season_id;
  169.     }
  170.     public function setSeasonId(int $season_id): self
  171.     {
  172.         $this->season_id $season_id;
  173.         return $this;
  174.     }
  175.     public function getSeasonName(): ?string
  176.     {
  177.         return $this->season_name;
  178.     }
  179.     public function setSeasonName(string $season_name): self
  180.     {
  181.         $this->season_name $season_name;
  182.         return $this;
  183.     }
  184.     public function getStatus(): ?int
  185.     {
  186.         return $this->status;
  187.     }
  188.     public function setStatus(int $status): self
  189.     {
  190.         $this->status $status;
  191.         return $this;
  192.     }
  193.     public function getActivityId(): ?string
  194.     {
  195.         return $this->activity_id;
  196.     }
  197.     public function setActivityId(string $activity_id): self
  198.     {
  199.         $this->activity_id $activity_id;
  200.         return $this;
  201.     }
  202.     public function getActivityName(): ?string
  203.     {
  204.         return $this->activity_name;
  205.     }
  206.     public function setActivityName(string $activity_name): self
  207.     {
  208.         $this->activity_name $activity_name;
  209.         return $this;
  210.     }
  211.     public function getDateStart(): ?\DateTimeInterface
  212.     {
  213.         return $this->date_start;
  214.     }
  215.     public function setDateStart(\DateTimeInterface $date_start): self
  216.     {
  217.         $this->date_start $date_start;
  218.         return $this;
  219.     }
  220.     public function getDateEnd(): ?\DateTimeInterface
  221.     {
  222.         return $this->date_end;
  223.     }
  224.     public function setDateEnd(\DateTimeInterface $date_end): self
  225.     {
  226.         $this->date_end $date_end;
  227.         return $this;
  228.     }
  229.     public function getTimeStart(): ?\DateTimeInterface
  230.     {
  231.         return $this->time_start;
  232.     }
  233.     public function setTimeStart(?\DateTimeInterface $time_start): self
  234.     {
  235.         $this->time_start $time_start;
  236.         return $this;
  237.     }
  238.     public function getTimeEnd(): ?\DateTimeInterface
  239.     {
  240.         return $this->time_end;
  241.     }
  242.     public function setTimeEnd(?\DateTimeInterface $time_end): self
  243.     {
  244.         $this->time_end $time_end;
  245.         return $this;
  246.     }
  247.     public function getLocation(): ?string
  248.     {
  249.         return $this->location;
  250.     }
  251.     public function setLocation(?string $location): self
  252.     {
  253.         $this->location $location;
  254.         return $this;
  255.     }
  256.     public function getHomeId(): ?int
  257.     {
  258.         return $this->home_id;
  259.     }
  260.     public function setHomeId(?int $home_id): self
  261.     {
  262.         $this->home_id $home_id;
  263.         return $this;
  264.     }
  265.     public function getHome(): ?string
  266.     {
  267.         return $this->home;
  268.     }
  269.     public function setHome(?string $home): self
  270.     {
  271.         $this->home $home;
  272.         return $this;
  273.     }
  274.     public function getAway(): ?string
  275.     {
  276.         return $this->away;
  277.     }
  278.     public function setAway(?string $away): self
  279.     {
  280.         $this->away $away;
  281.         return $this;
  282.     }
  283.     public function setIsFsConnected(?int $is_fs_connected): self
  284.     {
  285.         $this->is_fs_connected $is_fs_connected;
  286.         return $this;
  287.     }
  288.     public function getIsFsConnected(): ?int
  289.     {
  290.         return $this->is_fs_connected;
  291.     }
  292.     public function getNotes(): ?string
  293.     {
  294.         return $this->notes;
  295.     }
  296.     public function setNotes(?string $notes): self
  297.     {
  298.         $this->notes $notes;
  299.         return $this;
  300.     }
  301.     public function getIsCancelledEvent(): ?int
  302.     {
  303.         return $this->is_cancelled_event;
  304.     }
  305.     public function setIsCancelledEvent(?int $is_cancelled_event): self
  306.     {
  307.         $this->is_cancelled_event $is_cancelled_event;
  308.         return $this;
  309.     }
  310.     public function getIsPosponedEvent(): ?int
  311.     {
  312.         return $this->is_posponed_event;
  313.     }
  314.     public function setIsPosponedEvent(?int $is_posponed_event): self
  315.     {
  316.         $this->is_posponed_event $is_posponed_event;
  317.         return $this;
  318.     }
  319.     public function getIsAwayEvent(): ?int
  320.     {
  321.         return $this->is_away_event;
  322.     }
  323.     public function setIsAwayEvent(?int $is_away_event): self
  324.     {
  325.         $this->is_away_event $is_away_event;
  326.         return $this;
  327.     }
  328.     public function getEventId(): ?string
  329.     {
  330.         return $this->event_id;
  331.     }
  332.     public function setEventId(string $event_id): self
  333.     {
  334.         $this->event_id $event_id;
  335.         return $this;
  336.     }
  337.     public function getEventDate(): ?\DateTimeInterface
  338.     {
  339.         return $this->event_date;
  340.     }
  341.     public function setEventDate(\DateTimeInterface $event_date): self
  342.     {
  343.         $this->event_date $event_date;
  344.         return $this;
  345.     }
  346.     public function getIsSelfAssign(): ?bool
  347.     {
  348.         return $this->is_self_assign;
  349.     }
  350.     public function setIsSelfAssign(?bool $is_self_assign): self
  351.     {
  352.         $this->is_self_assign $is_self_assign;
  353.         return $this;
  354.     }
  355.     public function getIsSendTawsa(): ?bool
  356.     {
  357.         return $this->is_send_tawsa;
  358.     }
  359.     public function setIsSendTawsa(?bool $is_send_tawsa): self
  360.     {
  361.         $this->is_send_tawsa $is_send_tawsa;
  362.         return $this;
  363.     }
  364.     public function getAwayInfos()
  365.     {
  366.         return $this->away_infos;
  367.     }
  368.     public function setAwayInfos($away_infos): self
  369.     {
  370.         $this->away_infos $away_infos;
  371.         return $this;
  372.     }
  373.     public function getDateId(): ?string
  374.     {
  375.         return $this->date_id;
  376.     }
  377.     public function setDateId(string $date_id): self
  378.     {
  379.         $this->date_id $date_id;
  380.         return $this;
  381.     }
  382.     public function getWorkSheetId(): ?string
  383.     {
  384.         return $this->worksheet_id;
  385.     }
  386.     public function setWorkSheetId(string $worksheet_id): self
  387.     {
  388.         $this->worksheet_id $worksheet_id;
  389.         return $this;
  390.     }
  391.     public function getEventStatusId(): ?string
  392.     {
  393.         return $this->event_status_id;
  394.     }
  395.     public function setEventStatusId(string $event_status_id): self
  396.     {
  397.         $this->event_status_id $event_status_id;
  398.         return $this;
  399.     }
  400.     public function getEventStatusName(): ?string
  401.     {
  402.         return $this->event_status_name;
  403.     }
  404.     public function setEventStatusName(string $event_status_name): self
  405.     {
  406.         $this->event_status_name $event_status_name;
  407.         return $this;
  408.     }
  409.     public function getEventStatusActive(): ?int
  410.     {
  411.         return $this->event_status_active;
  412.     }
  413.     public function setEventStatusActive(?int $event_status_active): self
  414.     {
  415.         $this->event_status_active $event_status_active;
  416.         return $this;
  417.     }
  418.     public function getEventUpdatedDetails()
  419.     {
  420.         return $this->event_updated_details;
  421.     }
  422.     public function setEventUpdatedDetails($event_updated_details): self
  423.     {
  424.         $this->event_updated_details $event_updated_details;
  425.         return $this;
  426.     }
  427. }