Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.218.135.221
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
src /
Entity /
Delete
Unzip
Name
Size
Permission
Date
Action
.gitignore
0
B
-rw-rw-r--
2022-08-25 15:00
Catalog.php
6.21
KB
-rw-rw-r--
2023-08-11 07:51
CatalogLog.php
6.12
KB
-rw-rw-r--
2023-08-11 07:51
CatalogUpdates.php
1.31
KB
-rw-rw-r--
2023-03-15 13:04
Incomes.php
6.55
KB
-rw-rw-r--
2023-04-27 08:04
Orders.php
9.43
KB
-rw-rw-r--
2023-07-23 16:00
OrdersLog.php
9.77
KB
-rw-rw-r--
2023-07-23 16:00
Reports.php
24.52
KB
-rw-rw-r--
2023-07-23 16:34
Sales.php
12.44
KB
-rw-rw-r--
2023-04-27 08:04
SalesLog.php
12.79
KB
-rw-rw-r--
2023-06-10 20:27
Stocks.php
8.73
KB
-rw-rw-r--
2023-05-24 07:20
StocksLog.php
9.08
KB
-rw-rw-r--
2023-07-03 06:46
User.php
11.22
KB
-rw-rw-r--
2023-08-29 09:18
Warehouses.php
2.45
KB
-rw-rw-r--
2023-04-27 08:04
Save
Rename
<?php namespace App\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use App\Repository\CatalogRepository; /** * Kes * @ORM\Entity(repositoryClass=CatalogRepository::class) * @ORM\Table(name="catalog") */ class Catalog { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @var integer * @ORM\Column(type="integer", nullable="true") */ private $accountId; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $object; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $brand; /** * @var string * @ORM\Column(type="integer", nullable="true") */ private $costPrice; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $vendorCode; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $updateAt; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $colors; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $mediaFiles; /** * @var string * @ORM\Column(type="integer", nullable="true") */ private $nmID; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $sizes; /** * @var string * @ORM\Column(type="float", nullable="true") */ private $feedbackRating; /** * @var string * @ORM\Column(type="integer", nullable="true") */ private $feedbackCount; /** * @var \DateTime * @ORM\Column(type="datetime") */ private $updatedAt; /** * @var \DateTime * @ORM\Column(type="datetime") */ private $createdAt; public function __construct() { } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * @return string */ public function getNmID() { return $this->nmID; } /** * @param string $nmID */ public function setNmID($nmID) { $this->nmID = $nmID; } /** * @return integer */ public function getAccountId() { return $this->accountId; } /** * @param integer $accountId */ public function setAccountId($accountId) { $this->accountId = $accountId; } /** * @return string */ public function getObject() { return $this->object; } /** * @param string $object */ public function setObject($object) { $this->object = $object; } /** * @return string */ public function getBrand() { return $this->brand; } /** * @param string $brand */ public function setBrand($brand) { $this->brand = $brand; } /** * @return int */ public function getCostPrice() { return $this->costPrice; } /** * @param int $costPrice */ public function setCostPrice($costPrice) { $this->costPrice = $costPrice; } /** * @return string */ public function getVendorCode() { return $this->vendorCode; } /** * @param string $vendorCode */ public function setVendorCode($vendorCode) { $this->vendorCode = $vendorCode; } /** * @return string */ public function getUpdateAt() { return $this->updateAt; } /** * @param string $updateAt */ public function setUpdateAt($updateAt) { $this->updateAt = $updateAt; } /** * @return string */ public function getColors() { return $this->colors; } /** * @param string $colors */ public function setColors($colors) { $this->colors = $colors; } /** * @return string */ public function getMediaFiles() { return $this->mediaFiles; } /** * @param string $mediaFiles */ public function setMediaFiles($mediaFiles) { $this->mediaFiles = $mediaFiles; } /** * @return string */ public function getSizes() { return $this->sizes; } /** * @param string $sizes */ public function setSizes($sizes) { $this->sizes = $sizes; } /** * @return string */ public function getFeedbackRating() { return $this->feedbackRating; } /** * @param string $feedbackRating */ public function setFeedbackRating($feedbackRating) { $this->feedbackRating = $feedbackRating; } /** * @return string */ public function getFeedbackCount() { return $this->feedbackCount; } /** * @param string $feedbackCount */ public function setFeedbackCount($feedbackCount) { $this->feedbackCount = $feedbackCount; } /** * Set createdAt * * @param \DateTime $createdAt * * @return Kes */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } /** * @return string */ public function getUrl() { return $this->url; } /** * @param string $url */ public function setUrl($url) { $this->url = $url; } /** * Get createdAt * * @return \DateTime */ public function getCreatedAt() { return $this->createdAt; } /** * Set updatedAt * * @param \DateTime $updatedAt * * @return Kes */ public function setUpdatedAt($updatedAt) { $this->updatedAt = $updatedAt; return $this; } /** * Get updatedAt * * @return \DateTime */ public function getUpdatedAt() { return $this->updatedAt; } public function __toString() { return "{$this->object}"; } }