EntityCWikiConf.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. <?php
  2. use Doctrine\ORM\Mapping as ORM;
  3. /**
  4. * EntityCWikiConf
  5. *
  6. * @Table(name="c_wiki_conf")
  7. * @Entity
  8. */
  9. class EntityCWikiConf
  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="page_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  23. * @Id
  24. * @GeneratedValue(strategy="NONE")
  25. */
  26. private $pageId;
  27. /**
  28. * @var string
  29. *
  30. * @Column(name="task", type="text", precision=0, scale=0, nullable=false, unique=false)
  31. */
  32. private $task;
  33. /**
  34. * @var string
  35. *
  36. * @Column(name="feedback1", type="text", precision=0, scale=0, nullable=false, unique=false)
  37. */
  38. private $feedback1;
  39. /**
  40. * @var string
  41. *
  42. * @Column(name="feedback2", type="text", precision=0, scale=0, nullable=false, unique=false)
  43. */
  44. private $feedback2;
  45. /**
  46. * @var string
  47. *
  48. * @Column(name="feedback3", type="text", precision=0, scale=0, nullable=false, unique=false)
  49. */
  50. private $feedback3;
  51. /**
  52. * @var string
  53. *
  54. * @Column(name="fprogress1", type="string", length=3, precision=0, scale=0, nullable=false, unique=false)
  55. */
  56. private $fprogress1;
  57. /**
  58. * @var string
  59. *
  60. * @Column(name="fprogress2", type="string", length=3, precision=0, scale=0, nullable=false, unique=false)
  61. */
  62. private $fprogress2;
  63. /**
  64. * @var string
  65. *
  66. * @Column(name="fprogress3", type="string", length=3, precision=0, scale=0, nullable=false, unique=false)
  67. */
  68. private $fprogress3;
  69. /**
  70. * @var integer
  71. *
  72. * @Column(name="max_size", type="integer", precision=0, scale=0, nullable=true, unique=false)
  73. */
  74. private $maxSize;
  75. /**
  76. * @var integer
  77. *
  78. * @Column(name="max_text", type="integer", precision=0, scale=0, nullable=true, unique=false)
  79. */
  80. private $maxText;
  81. /**
  82. * @var integer
  83. *
  84. * @Column(name="max_version", type="integer", precision=0, scale=0, nullable=true, unique=false)
  85. */
  86. private $maxVersion;
  87. /**
  88. * @var \DateTime
  89. *
  90. * @Column(name="startdate_assig", type="datetime", precision=0, scale=0, nullable=false, unique=false)
  91. */
  92. private $startdateAssig;
  93. /**
  94. * @var \DateTime
  95. *
  96. * @Column(name="enddate_assig", type="datetime", precision=0, scale=0, nullable=false, unique=false)
  97. */
  98. private $enddateAssig;
  99. /**
  100. * @var integer
  101. *
  102. * @Column(name="delayedsubmit", type="integer", precision=0, scale=0, nullable=false, unique=false)
  103. */
  104. private $delayedsubmit;
  105. /**
  106. * Set cId
  107. *
  108. * @param integer $cId
  109. * @return EntityCWikiConf
  110. */
  111. public function setCId($cId)
  112. {
  113. $this->cId = $cId;
  114. return $this;
  115. }
  116. /**
  117. * Get cId
  118. *
  119. * @return integer
  120. */
  121. public function getCId()
  122. {
  123. return $this->cId;
  124. }
  125. /**
  126. * Set pageId
  127. *
  128. * @param integer $pageId
  129. * @return EntityCWikiConf
  130. */
  131. public function setPageId($pageId)
  132. {
  133. $this->pageId = $pageId;
  134. return $this;
  135. }
  136. /**
  137. * Get pageId
  138. *
  139. * @return integer
  140. */
  141. public function getPageId()
  142. {
  143. return $this->pageId;
  144. }
  145. /**
  146. * Set task
  147. *
  148. * @param string $task
  149. * @return EntityCWikiConf
  150. */
  151. public function setTask($task)
  152. {
  153. $this->task = $task;
  154. return $this;
  155. }
  156. /**
  157. * Get task
  158. *
  159. * @return string
  160. */
  161. public function getTask()
  162. {
  163. return $this->task;
  164. }
  165. /**
  166. * Set feedback1
  167. *
  168. * @param string $feedback1
  169. * @return EntityCWikiConf
  170. */
  171. public function setFeedback1($feedback1)
  172. {
  173. $this->feedback1 = $feedback1;
  174. return $this;
  175. }
  176. /**
  177. * Get feedback1
  178. *
  179. * @return string
  180. */
  181. public function getFeedback1()
  182. {
  183. return $this->feedback1;
  184. }
  185. /**
  186. * Set feedback2
  187. *
  188. * @param string $feedback2
  189. * @return EntityCWikiConf
  190. */
  191. public function setFeedback2($feedback2)
  192. {
  193. $this->feedback2 = $feedback2;
  194. return $this;
  195. }
  196. /**
  197. * Get feedback2
  198. *
  199. * @return string
  200. */
  201. public function getFeedback2()
  202. {
  203. return $this->feedback2;
  204. }
  205. /**
  206. * Set feedback3
  207. *
  208. * @param string $feedback3
  209. * @return EntityCWikiConf
  210. */
  211. public function setFeedback3($feedback3)
  212. {
  213. $this->feedback3 = $feedback3;
  214. return $this;
  215. }
  216. /**
  217. * Get feedback3
  218. *
  219. * @return string
  220. */
  221. public function getFeedback3()
  222. {
  223. return $this->feedback3;
  224. }
  225. /**
  226. * Set fprogress1
  227. *
  228. * @param string $fprogress1
  229. * @return EntityCWikiConf
  230. */
  231. public function setFprogress1($fprogress1)
  232. {
  233. $this->fprogress1 = $fprogress1;
  234. return $this;
  235. }
  236. /**
  237. * Get fprogress1
  238. *
  239. * @return string
  240. */
  241. public function getFprogress1()
  242. {
  243. return $this->fprogress1;
  244. }
  245. /**
  246. * Set fprogress2
  247. *
  248. * @param string $fprogress2
  249. * @return EntityCWikiConf
  250. */
  251. public function setFprogress2($fprogress2)
  252. {
  253. $this->fprogress2 = $fprogress2;
  254. return $this;
  255. }
  256. /**
  257. * Get fprogress2
  258. *
  259. * @return string
  260. */
  261. public function getFprogress2()
  262. {
  263. return $this->fprogress2;
  264. }
  265. /**
  266. * Set fprogress3
  267. *
  268. * @param string $fprogress3
  269. * @return EntityCWikiConf
  270. */
  271. public function setFprogress3($fprogress3)
  272. {
  273. $this->fprogress3 = $fprogress3;
  274. return $this;
  275. }
  276. /**
  277. * Get fprogress3
  278. *
  279. * @return string
  280. */
  281. public function getFprogress3()
  282. {
  283. return $this->fprogress3;
  284. }
  285. /**
  286. * Set maxSize
  287. *
  288. * @param integer $maxSize
  289. * @return EntityCWikiConf
  290. */
  291. public function setMaxSize($maxSize)
  292. {
  293. $this->maxSize = $maxSize;
  294. return $this;
  295. }
  296. /**
  297. * Get maxSize
  298. *
  299. * @return integer
  300. */
  301. public function getMaxSize()
  302. {
  303. return $this->maxSize;
  304. }
  305. /**
  306. * Set maxText
  307. *
  308. * @param integer $maxText
  309. * @return EntityCWikiConf
  310. */
  311. public function setMaxText($maxText)
  312. {
  313. $this->maxText = $maxText;
  314. return $this;
  315. }
  316. /**
  317. * Get maxText
  318. *
  319. * @return integer
  320. */
  321. public function getMaxText()
  322. {
  323. return $this->maxText;
  324. }
  325. /**
  326. * Set maxVersion
  327. *
  328. * @param integer $maxVersion
  329. * @return EntityCWikiConf
  330. */
  331. public function setMaxVersion($maxVersion)
  332. {
  333. $this->maxVersion = $maxVersion;
  334. return $this;
  335. }
  336. /**
  337. * Get maxVersion
  338. *
  339. * @return integer
  340. */
  341. public function getMaxVersion()
  342. {
  343. return $this->maxVersion;
  344. }
  345. /**
  346. * Set startdateAssig
  347. *
  348. * @param \DateTime $startdateAssig
  349. * @return EntityCWikiConf
  350. */
  351. public function setStartdateAssig($startdateAssig)
  352. {
  353. $this->startdateAssig = $startdateAssig;
  354. return $this;
  355. }
  356. /**
  357. * Get startdateAssig
  358. *
  359. * @return \DateTime
  360. */
  361. public function getStartdateAssig()
  362. {
  363. return $this->startdateAssig;
  364. }
  365. /**
  366. * Set enddateAssig
  367. *
  368. * @param \DateTime $enddateAssig
  369. * @return EntityCWikiConf
  370. */
  371. public function setEnddateAssig($enddateAssig)
  372. {
  373. $this->enddateAssig = $enddateAssig;
  374. return $this;
  375. }
  376. /**
  377. * Get enddateAssig
  378. *
  379. * @return \DateTime
  380. */
  381. public function getEnddateAssig()
  382. {
  383. return $this->enddateAssig;
  384. }
  385. /**
  386. * Set delayedsubmit
  387. *
  388. * @param integer $delayedsubmit
  389. * @return EntityCWikiConf
  390. */
  391. public function setDelayedsubmit($delayedsubmit)
  392. {
  393. $this->delayedsubmit = $delayedsubmit;
  394. return $this;
  395. }
  396. /**
  397. * Get delayedsubmit
  398. *
  399. * @return integer
  400. */
  401. public function getDelayedsubmit()
  402. {
  403. return $this->delayedsubmit;
  404. }
  405. }