123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- <?php
- use Doctrine\ORM\Mapping as ORM;
- /**
- * EntityCLpIvObjective
- *
- * @Table(name="c_lp_iv_objective")
- * @Entity
- */
- class EntityCLpIvObjective
- {
- /**
- * @var integer
- *
- * @Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @Id
- * @GeneratedValue(strategy="NONE")
- */
- private $cId;
- /**
- * @var integer
- *
- * @Column(name="id", type="bigint", precision=0, scale=0, nullable=false, unique=false)
- * @Id
- * @GeneratedValue(strategy="NONE")
- */
- private $id;
- /**
- * @var integer
- *
- * @Column(name="lp_iv_id", type="bigint", precision=0, scale=0, nullable=false, unique=false)
- */
- private $lpIvId;
- /**
- * @var integer
- *
- * @Column(name="order_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $orderId;
- /**
- * @var string
- *
- * @Column(name="objective_id", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
- */
- private $objectiveId;
- /**
- * @var float
- *
- * @Column(name="score_raw", type="float", precision=0, scale=0, nullable=false, unique=false)
- */
- private $scoreRaw;
- /**
- * @var float
- *
- * @Column(name="score_max", type="float", precision=0, scale=0, nullable=false, unique=false)
- */
- private $scoreMax;
- /**
- * @var float
- *
- * @Column(name="score_min", type="float", precision=0, scale=0, nullable=false, unique=false)
- */
- private $scoreMin;
- /**
- * @var string
- *
- * @Column(name="status", type="string", length=32, precision=0, scale=0, nullable=false, unique=false)
- */
- private $status;
- /**
- * Set cId
- *
- * @param integer $cId
- * @return EntityCLpIvObjective
- */
- public function setCId($cId)
- {
- $this->cId = $cId;
- return $this;
- }
- /**
- * Get cId
- *
- * @return integer
- */
- public function getCId()
- {
- return $this->cId;
- }
- /**
- * Set id
- *
- * @param integer $id
- * @return EntityCLpIvObjective
- */
- public function setId($id)
- {
- $this->id = $id;
- return $this;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set lpIvId
- *
- * @param integer $lpIvId
- * @return EntityCLpIvObjective
- */
- public function setLpIvId($lpIvId)
- {
- $this->lpIvId = $lpIvId;
- return $this;
- }
- /**
- * Get lpIvId
- *
- * @return integer
- */
- public function getLpIvId()
- {
- return $this->lpIvId;
- }
- /**
- * Set orderId
- *
- * @param integer $orderId
- * @return EntityCLpIvObjective
- */
- public function setOrderId($orderId)
- {
- $this->orderId = $orderId;
- return $this;
- }
- /**
- * Get orderId
- *
- * @return integer
- */
- public function getOrderId()
- {
- return $this->orderId;
- }
- /**
- * Set objectiveId
- *
- * @param string $objectiveId
- * @return EntityCLpIvObjective
- */
- public function setObjectiveId($objectiveId)
- {
- $this->objectiveId = $objectiveId;
- return $this;
- }
- /**
- * Get objectiveId
- *
- * @return string
- */
- public function getObjectiveId()
- {
- return $this->objectiveId;
- }
- /**
- * Set scoreRaw
- *
- * @param float $scoreRaw
- * @return EntityCLpIvObjective
- */
- public function setScoreRaw($scoreRaw)
- {
- $this->scoreRaw = $scoreRaw;
- return $this;
- }
- /**
- * Get scoreRaw
- *
- * @return float
- */
- public function getScoreRaw()
- {
- return $this->scoreRaw;
- }
- /**
- * Set scoreMax
- *
- * @param float $scoreMax
- * @return EntityCLpIvObjective
- */
- public function setScoreMax($scoreMax)
- {
- $this->scoreMax = $scoreMax;
- return $this;
- }
- /**
- * Get scoreMax
- *
- * @return float
- */
- public function getScoreMax()
- {
- return $this->scoreMax;
- }
- /**
- * Set scoreMin
- *
- * @param float $scoreMin
- * @return EntityCLpIvObjective
- */
- public function setScoreMin($scoreMin)
- {
- $this->scoreMin = $scoreMin;
- return $this;
- }
- /**
- * Get scoreMin
- *
- * @return float
- */
- public function getScoreMin()
- {
- return $this->scoreMin;
- }
- /**
- * Set status
- *
- * @param string $status
- * @return EntityCLpIvObjective
- */
- public function setStatus($status)
- {
- $this->status = $status;
- return $this;
- }
- /**
- * Get status
- *
- * @return string
- */
- public function getStatus()
- {
- return $this->status;
- }
- }
|