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="stocks") */ class Stocks { /** * @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="datetime", nullable="true") */ private $lastChangeDate; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $supplierArticle; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $techSize; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $barcode; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $quantity; /** * @var string * @ORM\Column(type="boolean") */ private $isSupply; /** * @var string * @ORM\Column(type="boolean") */ private $isRealization; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $quantityFull; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $warehouseName; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $nmID; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $subject; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $category; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $daysOnSite; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $brand; /** * @var string * @ORM\Column(type="string", length=255, nullable="true") */ private $SCCode; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $Price; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $Discount; /** * @var string * @ORM\Column(type="integer", nullable="true") */ private $commision; /** * @var string * @ORM\Column(type="integer", nullable="true") */ private $logistics; /** * @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 string */ public function getLastChangeDate() { return $this->lastChangeDate; } /** * @param string $lastChangeDate */ public function setLastChangeDate($lastChangeDate) { $this->lastChangeDate = $lastChangeDate; } /** * @return string */ public function getSupplierArticle() { return $this->supplierArticle; } /** * @param string $supplierArticle */ public function setSupplierArticle($supplierArticle) { $this->supplierArticle = $supplierArticle; } /** * @return string */ public function getTechSize() { return $this->techSize; } /** * @param string $techSize */ public function setTechSize($techSize) { $this->techSize = $techSize; } /** * @return string */ public function getBarcode() { return $this->barcode; } /** * @param string $barcode */ public function setBarcode($barcode) { $this->barcode = $barcode; } /** * @return int */ public function getQuantity() { return $this->quantity; } /** * @param int $quantity */ public function setQuantity($quantity) { $this->quantity = $quantity; } /** * @return string */ public function getIsSupply() { return $this->isSupply; } /** * @param string $isSupply */ public function setIsSupply($isSupply) { $this->isSupply = $isSupply; } /** * @return string */ public function getIsRealization() { return $this->isRealization; } /** * @param string $isRealization */ public function setIsRealization($isRealization) { $this->isRealization = $isRealization; } /** * @return int */ public function getQuantityFull() { return $this->quantityFull; } /** * @param int $quantityFull */ public function setQuantityFull($quantityFull) { $this->quantityFull = $quantityFull; } /** * @return string */ public function getWarehouseName() { return $this->warehouseName; } /** * @param string $warehouseName */ public function setWarehouseName($warehouseName) { $this->warehouseName = $warehouseName; } /** * @return int */ public function getNmID() { return $this->nmID; } /** * @param int $nmID */ public function setNmID($nmID) { $this->nmID = $nmID; } /** * @return string */ public function getSubject() { return $this->subject; } /** * @param string $subject */ public function setSubject($subject) { $this->subject = $subject; } /** * @return string */ public function getCategory() { return $this->category; } /** * @param string $category */ public function setCategory($category) { $this->category = $category; } /** * @return int */ public function getDaysOnSite() { return $this->daysOnSite; } /** * @param int $daysOnSite */ public function setDaysOnSite($daysOnSite) { $this->daysOnSite = $daysOnSite; } /** * @return string */ public function getBrand() { return $this->brand; } /** * @param string $brand */ public function setBrand($brand) { $this->brand = $brand; } /** * @return string */ public function getSCCode() { return $this->SCCode; } /** * @param string $SCCode */ public function setSCCode($SCCode) { $this->SCCode = $SCCode; } /** * @return int */ public function getPrice() { return $this->Price; } /** * @param int $Price */ public function setPrice($Price) { $this->Price = $Price; } /** * @return int */ public function getDiscount() { return $this->Discount; } /** * @param int $Discount */ public function setDiscount($Discount) { $this->Discount = $Discount; } /** * @return int */ public function getCommision() { return $this->commision; } /** * @param int $commision */ public function setCommision($commision) { $this->commision = $commision; } /** * @return int */ public function getLogistics() { return $this->logistics; } /** * @param int $logistics */ public function setLogistics($logistics) { $this->logistics = $logistics; } /** * 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; } }