EntityCLpIvObjective.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <?php
  2. use Doctrine\ORM\Mapping as ORM;
  3. /**
  4. * EntityCLpIvObjective
  5. *
  6. * @Table(name="c_lp_iv_objective")
  7. * @Entity
  8. */
  9. class EntityCLpIvObjective
  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="id", type="bigint", precision=0, scale=0, nullable=false, unique=false)
  23. * @Id
  24. * @GeneratedValue(strategy="NONE")
  25. */
  26. private $id;
  27. /**
  28. * @var integer
  29. *
  30. * @Column(name="lp_iv_id", type="bigint", precision=0, scale=0, nullable=false, unique=false)
  31. */
  32. private $lpIvId;
  33. /**
  34. * @var integer
  35. *
  36. * @Column(name="order_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  37. */
  38. private $orderId;
  39. /**
  40. * @var string
  41. *
  42. * @Column(name="objective_id", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
  43. */
  44. private $objectiveId;
  45. /**
  46. * @var float
  47. *
  48. * @Column(name="score_raw", type="float", precision=0, scale=0, nullable=false, unique=false)
  49. */
  50. private $scoreRaw;
  51. /**
  52. * @var float
  53. *
  54. * @Column(name="score_max", type="float", precision=0, scale=0, nullable=false, unique=false)
  55. */
  56. private $scoreMax;
  57. /**
  58. * @var float
  59. *
  60. * @Column(name="score_min", type="float", precision=0, scale=0, nullable=false, unique=false)
  61. */
  62. private $scoreMin;
  63. /**
  64. * @var string
  65. *
  66. * @Column(name="status", type="string", length=32, precision=0, scale=0, nullable=false, unique=false)
  67. */
  68. private $status;
  69. /**
  70. * Set cId
  71. *
  72. * @param integer $cId
  73. * @return EntityCLpIvObjective
  74. */
  75. public function setCId($cId)
  76. {
  77. $this->cId = $cId;
  78. return $this;
  79. }
  80. /**
  81. * Get cId
  82. *
  83. * @return integer
  84. */
  85. public function getCId()
  86. {
  87. return $this->cId;
  88. }
  89. /**
  90. * Set id
  91. *
  92. * @param integer $id
  93. * @return EntityCLpIvObjective
  94. */
  95. public function setId($id)
  96. {
  97. $this->id = $id;
  98. return $this;
  99. }
  100. /**
  101. * Get id
  102. *
  103. * @return integer
  104. */
  105. public function getId()
  106. {
  107. return $this->id;
  108. }
  109. /**
  110. * Set lpIvId
  111. *
  112. * @param integer $lpIvId
  113. * @return EntityCLpIvObjective
  114. */
  115. public function setLpIvId($lpIvId)
  116. {
  117. $this->lpIvId = $lpIvId;
  118. return $this;
  119. }
  120. /**
  121. * Get lpIvId
  122. *
  123. * @return integer
  124. */
  125. public function getLpIvId()
  126. {
  127. return $this->lpIvId;
  128. }
  129. /**
  130. * Set orderId
  131. *
  132. * @param integer $orderId
  133. * @return EntityCLpIvObjective
  134. */
  135. public function setOrderId($orderId)
  136. {
  137. $this->orderId = $orderId;
  138. return $this;
  139. }
  140. /**
  141. * Get orderId
  142. *
  143. * @return integer
  144. */
  145. public function getOrderId()
  146. {
  147. return $this->orderId;
  148. }
  149. /**
  150. * Set objectiveId
  151. *
  152. * @param string $objectiveId
  153. * @return EntityCLpIvObjective
  154. */
  155. public function setObjectiveId($objectiveId)
  156. {
  157. $this->objectiveId = $objectiveId;
  158. return $this;
  159. }
  160. /**
  161. * Get objectiveId
  162. *
  163. * @return string
  164. */
  165. public function getObjectiveId()
  166. {
  167. return $this->objectiveId;
  168. }
  169. /**
  170. * Set scoreRaw
  171. *
  172. * @param float $scoreRaw
  173. * @return EntityCLpIvObjective
  174. */
  175. public function setScoreRaw($scoreRaw)
  176. {
  177. $this->scoreRaw = $scoreRaw;
  178. return $this;
  179. }
  180. /**
  181. * Get scoreRaw
  182. *
  183. * @return float
  184. */
  185. public function getScoreRaw()
  186. {
  187. return $this->scoreRaw;
  188. }
  189. /**
  190. * Set scoreMax
  191. *
  192. * @param float $scoreMax
  193. * @return EntityCLpIvObjective
  194. */
  195. public function setScoreMax($scoreMax)
  196. {
  197. $this->scoreMax = $scoreMax;
  198. return $this;
  199. }
  200. /**
  201. * Get scoreMax
  202. *
  203. * @return float
  204. */
  205. public function getScoreMax()
  206. {
  207. return $this->scoreMax;
  208. }
  209. /**
  210. * Set scoreMin
  211. *
  212. * @param float $scoreMin
  213. * @return EntityCLpIvObjective
  214. */
  215. public function setScoreMin($scoreMin)
  216. {
  217. $this->scoreMin = $scoreMin;
  218. return $this;
  219. }
  220. /**
  221. * Get scoreMin
  222. *
  223. * @return float
  224. */
  225. public function getScoreMin()
  226. {
  227. return $this->scoreMin;
  228. }
  229. /**
  230. * Set status
  231. *
  232. * @param string $status
  233. * @return EntityCLpIvObjective
  234. */
  235. public function setStatus($status)
  236. {
  237. $this->status = $status;
  238. return $this;
  239. }
  240. /**
  241. * Get status
  242. *
  243. * @return string
  244. */
  245. public function getStatus()
  246. {
  247. return $this->status;
  248. }
  249. }