123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class LpItemView extends \CourseEntity
- {
- /**
- * @return \Entity\Repository\LpItemViewRepository
- */
- public static function repository(){
- return \Entity\Repository\LpItemViewRepository::instance();
- }
- /**
- * @return \Entity\LpItemView
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $c_id
- */
- protected $c_id;
- /**
- * @var bigint $id
- */
- protected $id;
- /**
- * @var integer $lp_item_id
- */
- protected $lp_item_id;
- /**
- * @var integer $lp_view_id
- */
- protected $lp_view_id;
- /**
- * @var integer $view_count
- */
- protected $view_count;
- /**
- * @var integer $start_time
- */
- protected $start_time;
- /**
- * @var integer $total_time
- */
- protected $total_time;
- /**
- * @var float $score
- */
- protected $score;
- /**
- * @var string $status
- */
- protected $status;
- /**
- * @var text $suspend_data
- */
- protected $suspend_data;
- /**
- * @var text $lesson_location
- */
- protected $lesson_location;
- /**
- * @var string $core_exit
- */
- protected $core_exit;
- /**
- * @var string $max_score
- */
- protected $max_score;
- /**
- * Set c_id
- *
- * @param integer $value
- * @return LpItemView
- */
- public function set_c_id($value)
- {
- $this->c_id = $value;
- return $this;
- }
- /**
- * Get c_id
- *
- * @return integer
- */
- public function get_c_id()
- {
- return $this->c_id;
- }
- /**
- * Set id
- *
- * @param bigint $value
- * @return LpItemView
- */
- public function set_id($value)
- {
- $this->id = $value;
- return $this;
- }
- /**
- * Get id
- *
- * @return bigint
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set lp_item_id
- *
- * @param integer $value
- * @return LpItemView
- */
- public function set_lp_item_id($value)
- {
- $this->lp_item_id = $value;
- return $this;
- }
- /**
- * Get lp_item_id
- *
- * @return integer
- */
- public function get_lp_item_id()
- {
- return $this->lp_item_id;
- }
- /**
- * Set lp_view_id
- *
- * @param integer $value
- * @return LpItemView
- */
- public function set_lp_view_id($value)
- {
- $this->lp_view_id = $value;
- return $this;
- }
- /**
- * Get lp_view_id
- *
- * @return integer
- */
- public function get_lp_view_id()
- {
- return $this->lp_view_id;
- }
- /**
- * Set view_count
- *
- * @param integer $value
- * @return LpItemView
- */
- public function set_view_count($value)
- {
- $this->view_count = $value;
- return $this;
- }
- /**
- * Get view_count
- *
- * @return integer
- */
- public function get_view_count()
- {
- return $this->view_count;
- }
- /**
- * Set start_time
- *
- * @param integer $value
- * @return LpItemView
- */
- public function set_start_time($value)
- {
- $this->start_time = $value;
- return $this;
- }
- /**
- * Get start_time
- *
- * @return integer
- */
- public function get_start_time()
- {
- return $this->start_time;
- }
- /**
- * Set total_time
- *
- * @param integer $value
- * @return LpItemView
- */
- public function set_total_time($value)
- {
- $this->total_time = $value;
- return $this;
- }
- /**
- * Get total_time
- *
- * @return integer
- */
- public function get_total_time()
- {
- return $this->total_time;
- }
- /**
- * Set score
- *
- * @param float $value
- * @return LpItemView
- */
- public function set_score($value)
- {
- $this->score = $value;
- return $this;
- }
- /**
- * Get score
- *
- * @return float
- */
- public function get_score()
- {
- return $this->score;
- }
- /**
- * Set status
- *
- * @param string $value
- * @return LpItemView
- */
- public function set_status($value)
- {
- $this->status = $value;
- return $this;
- }
- /**
- * Get status
- *
- * @return string
- */
- public function get_status()
- {
- return $this->status;
- }
- /**
- * Set suspend_data
- *
- * @param text $value
- * @return LpItemView
- */
- public function set_suspend_data($value)
- {
- $this->suspend_data = $value;
- return $this;
- }
- /**
- * Get suspend_data
- *
- * @return text
- */
- public function get_suspend_data()
- {
- return $this->suspend_data;
- }
- /**
- * Set lesson_location
- *
- * @param text $value
- * @return LpItemView
- */
- public function set_lesson_location($value)
- {
- $this->lesson_location = $value;
- return $this;
- }
- /**
- * Get lesson_location
- *
- * @return text
- */
- public function get_lesson_location()
- {
- return $this->lesson_location;
- }
- /**
- * Set core_exit
- *
- * @param string $value
- * @return LpItemView
- */
- public function set_core_exit($value)
- {
- $this->core_exit = $value;
- return $this;
- }
- /**
- * Get core_exit
- *
- * @return string
- */
- public function get_core_exit()
- {
- return $this->core_exit;
- }
- /**
- * Set max_score
- *
- * @param string $value
- * @return LpItemView
- */
- public function set_max_score($value)
- {
- $this->max_score = $value;
- return $this;
- }
- /**
- * Get max_score
- *
- * @return string
- */
- public function get_max_score()
- {
- return $this->max_score;
- }
- }
|