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="supplier_incomes") */ class Incomes { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @var integer * @ORM\Column(type="integer", nullable="true") */ private $accountId; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $incomeId; /** * @var int * @ORM\Column(type="integer", nullable="true") */ private $number; /** * @var string * @ORM\Column(type="datetime",nullable="true") */ private $date; /** * @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 int * @ORM\Column(type="integer", nullable="true") */ private $totalPrice; /** * @var string * @ORM\Column(type="datetime", nullable="true") */ private $dateClose; /** * @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 $status; /** * @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 getIncomeId() { return $this->incomeId; } /** * @param int $incomeId */ public function setIncomeId($incomeId) { $this->incomeId = $incomeId; } /** * @return int */ public function getNumber() { return $this->number; } /** * @param int $number */ public function setNumber($number) { $this->number = $number; } /** * @return string */ public function getDate() { return $this->date; } /** * @param string $date */ public function setDate($date) { $this->date = $date; } /** * @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 int */ public function getTotalPrice() { return $this->totalPrice; } /** * @param int $totalPrice */ public function setTotalPrice($totalPrice) { $this->totalPrice = $totalPrice; } /** * @return string */ public function getDateClose() { return $this->dateClose; } /** * @param string $dateClose */ public function setDateClose($dateClose) { $this->dateClose = $dateClose; } /** * @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 getStatus() { return $this->status; } /** * @param string $status */ public function setStatus($status) { $this->status = $status; } /** * 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; } }