123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class Legal extends \Entity
- {
- /**
- * @return \Entity\Repository\LegalRepository
- */
- public static function repository(){
- return \Entity\Repository\LegalRepository::instance();
- }
- /**
- * @return \Entity\Legal
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $legal_id
- */
- protected $legal_id;
- /**
- * @var integer $language_id
- */
- protected $language_id;
- /**
- * @var integer $date
- */
- protected $date;
- /**
- * @var text $content
- */
- protected $content;
- /**
- * @var integer $type
- */
- protected $type;
- /**
- * @var text $changes
- */
- protected $changes;
- /**
- * @var integer $version
- */
- protected $version;
- /**
- * Set legal_id
- *
- * @param integer $value
- * @return Legal
- */
- public function set_legal_id($value)
- {
- $this->legal_id = $value;
- return $this;
- }
- /**
- * Get legal_id
- *
- * @return integer
- */
- public function get_legal_id()
- {
- return $this->legal_id;
- }
- /**
- * Set language_id
- *
- * @param integer $value
- * @return Legal
- */
- public function set_language_id($value)
- {
- $this->language_id = $value;
- return $this;
- }
- /**
- * Get language_id
- *
- * @return integer
- */
- public function get_language_id()
- {
- return $this->language_id;
- }
- /**
- * Set date
- *
- * @param integer $value
- * @return Legal
- */
- public function set_date($value)
- {
- $this->date = $value;
- return $this;
- }
- /**
- * Get date
- *
- * @return integer
- */
- public function get_date()
- {
- return $this->date;
- }
- /**
- * Set content
- *
- * @param text $value
- * @return Legal
- */
- public function set_content($value)
- {
- $this->content = $value;
- return $this;
- }
- /**
- * Get content
- *
- * @return text
- */
- public function get_content()
- {
- return $this->content;
- }
- /**
- * Set type
- *
- * @param integer $value
- * @return Legal
- */
- public function set_type($value)
- {
- $this->type = $value;
- return $this;
- }
- /**
- * Get type
- *
- * @return integer
- */
- public function get_type()
- {
- return $this->type;
- }
- /**
- * Set changes
- *
- * @param text $value
- * @return Legal
- */
- public function set_changes($value)
- {
- $this->changes = $value;
- return $this;
- }
- /**
- * Get changes
- *
- * @return text
- */
- public function get_changes()
- {
- return $this->changes;
- }
- /**
- * Set version
- *
- * @param integer $value
- * @return Legal
- */
- public function set_version($value)
- {
- $this->version = $value;
- return $this;
- }
- /**
- * Get version
- *
- * @return integer
- */
- public function get_version()
- {
- return $this->version;
- }
- }
|