chore: initial import for test contour with k3s CI

This commit is contained in:
sova-bootstrap
2026-05-28 12:09:28 +03:00
commit d77d0a872f
423 changed files with 35401 additions and 0 deletions
+75
View File
@@ -0,0 +1,75 @@
<?php
namespace App\Entity;
use App\Repository\DirectCompanyRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=DirectCompanyRepository::class)
*/
class DirectCompany
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
/**
* @ORM\Column(type="bigint")
*/
private $companyId;
/**
* @ORM\Column(type="string", length=255)
*/
private $city;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getCompanyId(): ?string
{
return $this->companyId;
}
public function setCompanyId(string $companyId): self
{
$this->companyId = $companyId;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(string $city): self
{
$this->city = $city;
return $this;
}
}