| 1 | <?php |
||
| 20 | class CToolIntro |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var integer |
||
| 24 | * |
||
| 25 | * @ORM\Column(name="iid", type="integer") |
||
| 26 | * @ORM\Id |
||
| 27 | * @ORM\GeneratedValue |
||
| 28 | */ |
||
| 29 | private $iid; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var integer |
||
| 33 | * |
||
| 34 | * @ORM\Column(name="c_id", type="integer") |
||
| 35 | */ |
||
| 36 | private $cId; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var integer |
||
| 40 | * |
||
| 41 | * @ORM\Column(name="tool", type="string", nullable=false) |
||
| 42 | */ |
||
| 43 | private $tool; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @var string |
||
| 47 | * @GRID\Column(type="text") |
||
| 48 | * @ORM\Column(name="intro_text", type="text", nullable=false) |
||
| 49 | */ |
||
| 50 | private $introText; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @var integer |
||
| 54 | * |
||
| 55 | * @ORM\Column(name="session_id", type="integer") |
||
| 56 | */ |
||
| 57 | private $sessionId; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return int |
||
| 61 | */ |
||
| 62 | public function getId() |
||
| 66 | |||
| 67 | /** |
||
| 68 | * Set introText |
||
| 69 | * |
||
| 70 | * @param string $introText |
||
| 71 | * @return CToolIntro |
||
| 72 | */ |
||
| 73 | public function setIntroText($introText) |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Get introText |
||
| 82 | * |
||
| 83 | * @return string |
||
| 84 | */ |
||
| 85 | public function getIntroText() |
||
| 89 | |||
| 90 | /** |
||
| 91 | * Set cId |
||
| 92 | * |
||
| 93 | * @param integer $cId |
||
| 94 | * @return CToolIntro |
||
| 95 | */ |
||
| 96 | public function setCId($cId) |
||
| 102 | |||
| 103 | /** |
||
| 104 | * Get cId |
||
| 105 | * |
||
| 106 | * @return integer |
||
| 107 | */ |
||
| 108 | public function getCId() |
||
| 112 | |||
| 113 | /** |
||
| 114 | * Set sessionId |
||
| 115 | * |
||
| 116 | * @param integer $sessionId |
||
| 117 | * @return CToolIntro |
||
| 118 | */ |
||
| 119 | public function setSessionId($sessionId) |
||
| 125 | |||
| 126 | /** |
||
| 127 | * Get sessionId |
||
| 128 | * |
||
| 129 | * @return integer |
||
| 130 | */ |
||
| 131 | public function getSessionId() |
||
| 135 | |||
| 136 | /** |
||
| 137 | * @return string |
||
| 138 | */ |
||
| 139 | public function getTool() |
||
| 143 | |||
| 144 | /** |
||
| 145 | * @param $tool |
||
| 146 | * @return $this |
||
| 147 | */ |
||
| 148 | public function setTool($tool) |
||
| 154 | } |
||
| 155 |