123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- <?php
- use Doctrine\ORM\Mapping as ORM;
- /**
- * EntityCDropboxFile
- *
- * @Table(name="c_dropbox_file")
- * @Entity
- */
- class EntityCDropboxFile
- {
- /**
- * @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="integer", precision=0, scale=0, nullable=false, unique=false)
- * @Id
- * @GeneratedValue(strategy="NONE")
- */
- private $id;
- /**
- * @var integer
- *
- * @Column(name="uploader_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $uploaderId;
- /**
- * @var string
- *
- * @Column(name="filename", type="string", length=250, precision=0, scale=0, nullable=false, unique=false)
- */
- private $filename;
- /**
- * @var integer
- *
- * @Column(name="filesize", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $filesize;
- /**
- * @var string
- *
- * @Column(name="title", type="string", length=250, precision=0, scale=0, nullable=true, unique=false)
- */
- private $title;
- /**
- * @var string
- *
- * @Column(name="description", type="string", length=250, precision=0, scale=0, nullable=true, unique=false)
- */
- private $description;
- /**
- * @var string
- *
- * @Column(name="author", type="string", length=250, precision=0, scale=0, nullable=true, unique=false)
- */
- private $author;
- /**
- * @var \DateTime
- *
- * @Column(name="upload_date", type="datetime", precision=0, scale=0, nullable=false, unique=false)
- */
- private $uploadDate;
- /**
- * @var \DateTime
- *
- * @Column(name="last_upload_date", type="datetime", precision=0, scale=0, nullable=false, unique=false)
- */
- private $lastUploadDate;
- /**
- * @var integer
- *
- * @Column(name="cat_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $catId;
- /**
- * @var integer
- *
- * @Column(name="session_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $sessionId;
- /**
- * Set cId
- *
- * @param integer $cId
- * @return EntityCDropboxFile
- */
- 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 EntityCDropboxFile
- */
- public function setId($id)
- {
- $this->id = $id;
- return $this;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set uploaderId
- *
- * @param integer $uploaderId
- * @return EntityCDropboxFile
- */
- public function setUploaderId($uploaderId)
- {
- $this->uploaderId = $uploaderId;
- return $this;
- }
- /**
- * Get uploaderId
- *
- * @return integer
- */
- public function getUploaderId()
- {
- return $this->uploaderId;
- }
- /**
- * Set filename
- *
- * @param string $filename
- * @return EntityCDropboxFile
- */
- public function setFilename($filename)
- {
- $this->filename = $filename;
- return $this;
- }
- /**
- * Get filename
- *
- * @return string
- */
- public function getFilename()
- {
- return $this->filename;
- }
- /**
- * Set filesize
- *
- * @param integer $filesize
- * @return EntityCDropboxFile
- */
- public function setFilesize($filesize)
- {
- $this->filesize = $filesize;
- return $this;
- }
- /**
- * Get filesize
- *
- * @return integer
- */
- public function getFilesize()
- {
- return $this->filesize;
- }
- /**
- * Set title
- *
- * @param string $title
- * @return EntityCDropboxFile
- */
- public function setTitle($title)
- {
- $this->title = $title;
- return $this;
- }
- /**
- * Get title
- *
- * @return string
- */
- public function getTitle()
- {
- return $this->title;
- }
- /**
- * Set description
- *
- * @param string $description
- * @return EntityCDropboxFile
- */
- public function setDescription($description)
- {
- $this->description = $description;
- return $this;
- }
- /**
- * Get description
- *
- * @return string
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * Set author
- *
- * @param string $author
- * @return EntityCDropboxFile
- */
- public function setAuthor($author)
- {
- $this->author = $author;
- return $this;
- }
- /**
- * Get author
- *
- * @return string
- */
- public function getAuthor()
- {
- return $this->author;
- }
- /**
- * Set uploadDate
- *
- * @param \DateTime $uploadDate
- * @return EntityCDropboxFile
- */
- public function setUploadDate($uploadDate)
- {
- $this->uploadDate = $uploadDate;
- return $this;
- }
- /**
- * Get uploadDate
- *
- * @return \DateTime
- */
- public function getUploadDate()
- {
- return $this->uploadDate;
- }
- /**
- * Set lastUploadDate
- *
- * @param \DateTime $lastUploadDate
- * @return EntityCDropboxFile
- */
- public function setLastUploadDate($lastUploadDate)
- {
- $this->lastUploadDate = $lastUploadDate;
- return $this;
- }
- /**
- * Get lastUploadDate
- *
- * @return \DateTime
- */
- public function getLastUploadDate()
- {
- return $this->lastUploadDate;
- }
- /**
- * Set catId
- *
- * @param integer $catId
- * @return EntityCDropboxFile
- */
- public function setCatId($catId)
- {
- $this->catId = $catId;
- return $this;
- }
- /**
- * Get catId
- *
- * @return integer
- */
- public function getCatId()
- {
- return $this->catId;
- }
- /**
- * Set sessionId
- *
- * @param integer $sessionId
- * @return EntityCDropboxFile
- */
- public function setSessionId($sessionId)
- {
- $this->sessionId = $sessionId;
- return $this;
- }
- /**
- * Get sessionId
- *
- * @return integer
- */
- public function getSessionId()
- {
- return $this->sessionId;
- }
- }
|