BranchRelSession.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. namespace Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * BranchRelSession
  6. *
  7. * @ORM\Table(name="branch_rel_session")
  8. * @ORM\Entity
  9. */
  10. class BranchRelSession
  11. {
  12. /**
  13. * @var integer
  14. *
  15. * @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  16. * @ORM\Id
  17. * @ORM\GeneratedValue(strategy="IDENTITY")
  18. */
  19. private $id;
  20. /**
  21. * @var integer
  22. *
  23. * @ORM\Column(name="branch_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  24. */
  25. private $branchId;
  26. /**
  27. * @var integer
  28. *
  29. * @ORM\Column(name="session_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  30. */
  31. private $sessionId;
  32. /**
  33. * @var boolean
  34. *
  35. * @ORM\Column(name="display_order", type="boolean", precision=0, scale=0, nullable=false, unique=false)
  36. */
  37. private $displayOrder;
  38. /**
  39. * Get id
  40. *
  41. * @return integer
  42. */
  43. public function getId()
  44. {
  45. return $this->id;
  46. }
  47. /**
  48. * Set branchId
  49. *
  50. * @param integer $branchId
  51. * @return BranchRelSession
  52. */
  53. public function setBranchId($branchId)
  54. {
  55. $this->branchId = $branchId;
  56. return $this;
  57. }
  58. /**
  59. * Get branchId
  60. *
  61. * @return integer
  62. */
  63. public function getBranchId()
  64. {
  65. return $this->branchId;
  66. }
  67. /**
  68. * Set sessionId
  69. *
  70. * @param integer $sessionId
  71. * @return BranchRelSession
  72. */
  73. public function setSessionId($sessionId)
  74. {
  75. $this->sessionId = $sessionId;
  76. return $this;
  77. }
  78. /**
  79. * Get sessionId
  80. *
  81. * @return integer
  82. */
  83. public function getSessionId()
  84. {
  85. return $this->sessionId;
  86. }
  87. /**
  88. * Set displayOrder
  89. *
  90. * @param boolean $displayOrder
  91. * @return BranchRelSession
  92. */
  93. public function setDisplayOrder($displayOrder)
  94. {
  95. $this->displayOrder = $displayOrder;
  96. return $this;
  97. }
  98. /**
  99. * Get displayOrder
  100. *
  101. * @return boolean
  102. */
  103. public function getDisplayOrder()
  104. {
  105. return $this->displayOrder;
  106. }
  107. }