chore: initial import for test contour

This commit is contained in:
sova-bootstrap
2026-05-27 19:36:32 +03:00
commit 166cdb148e
282 changed files with 84872 additions and 0 deletions
+284
View File
@@ -0,0 +1,284 @@
<?php
namespace App\Entity;
use App\Repository\WebGetDocinfoRepository;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ORM\Entity(repositoryClass: WebGetDocinfoRepository::class)]
#[ORM\Table(name: 'web_get_docinfo')]
class WebGetDocinfo
{
#[Groups(['web_get_docinfo:read'])]
#[ORM\Id]
#[ORM\Column(type: 'bigint')]
private ?int $id = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Id]
#[ORM\Column(name: 'source_table', type: 'string', length: 10)]
private ?string $sourceTable = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'doc_name', type: 'string', length: 80, nullable: true)]
private ?string $docName = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'doc_post', type: 'string', length: 256, nullable: true)]
private ?string $docPost = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'integer', nullable: true)]
private ?int $filial = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'smallint', nullable: true)]
private ?int $viewinweb = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'bigint', nullable: true)]
private ?int $depnum = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'first_schid', type: 'bigint', nullable: true)]
private ?int $firstSchid = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'second_schid', type: 'bigint', nullable: true)]
private ?int $secondSchid = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'accepts_dms', type: 'integer', nullable: true)]
private ?int $acceptsDms = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'string', length: 1024, nullable: true)]
private ?string $anons = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'string', length: 4096, nullable: true)]
private ?string $content = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'datetime', nullable: true)]
private ?\DateTimeInterface $experience = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'smallint', nullable: true)]
private ?int $category = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(type: 'string', length: 120, nullable: true)]
private ?string $degree = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'patient_bage', type: 'integer', nullable: true)]
private ?int $patientBage = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'patient_fage', type: 'integer', nullable: true)]
private ?int $patientFage = null;
#[Groups(['web_get_docinfo:read'])]
#[ORM\Column(name: 'updated_at', type: 'datetime', nullable: true)]
private ?\DateTimeInterface $updatedAt = null;
public function getId(): ?int
{
return $this->id;
}
public function setId(?int $id): self
{
$this->id = $id;
return $this;
}
public function getSourceTable(): ?string
{
return $this->sourceTable;
}
public function setSourceTable(?string $sourceTable): self
{
$this->sourceTable = $sourceTable;
return $this;
}
public function getDocName(): ?string
{
return $this->docName;
}
public function setDocName(?string $docName): self
{
$this->docName = $docName;
return $this;
}
public function getDocPost(): ?string
{
return $this->docPost;
}
public function setDocPost(?string $docPost): self
{
$this->docPost = $docPost;
return $this;
}
public function getFilial(): ?int
{
return $this->filial;
}
public function setFilial(?int $filial): self
{
$this->filial = $filial;
return $this;
}
public function getViewinweb(): ?int
{
return $this->viewinweb;
}
public function setViewinweb(?int $viewinweb): self
{
$this->viewinweb = $viewinweb;
return $this;
}
public function getDepnum(): ?int
{
return $this->depnum;
}
public function setDepnum(?int $depnum): self
{
$this->depnum = $depnum;
return $this;
}
public function getFirstSchid(): ?int
{
return $this->firstSchid;
}
public function setFirstSchid(?int $firstSchid): self
{
$this->firstSchid = $firstSchid;
return $this;
}
public function getSecondSchid(): ?int
{
return $this->secondSchid;
}
public function setSecondSchid(?int $secondSchid): self
{
$this->secondSchid = $secondSchid;
return $this;
}
public function getAcceptsDms(): ?int
{
return $this->acceptsDms;
}
public function setAcceptsDms(?int $acceptsDms): self
{
$this->acceptsDms = $acceptsDms;
return $this;
}
public function getAnons(): ?string
{
return $this->anons;
}
public function setAnons(?string $anons): self
{
$this->anons = $anons;
return $this;
}
public function getContent(): ?string
{
return $this->content;
}
public function setContent(?string $content): self
{
$this->content = $content;
return $this;
}
public function getExperience(): ?\DateTimeInterface
{
return $this->experience;
}
public function setExperience(?\DateTimeInterface $experience): self
{
$this->experience = $experience;
return $this;
}
public function getCategory(): ?int
{
return $this->category;
}
public function setCategory(?int $category): self
{
$this->category = $category;
return $this;
}
public function getDegree(): ?string
{
return $this->degree;
}
public function setDegree(?string $degree): self
{
$this->degree = $degree;
return $this;
}
public function getPatientBage(): ?int
{
return $this->patientBage;
}
public function setPatientBage(?int $patientBage): self
{
$this->patientBage = $patientBage;
return $this;
}
public function getPatientFage(): ?int
{
return $this->patientFage;
}
public function setPatientFage(?int $patientFage): self
{
$this->patientFage = $patientFage;
return $this;
}
public function getUpdatedAt(): ?\DateTimeInterface
{
return $this->updatedAt;
}
public function setUpdatedAt(?\DateTimeInterface $updatedAt): self
{
$this->updatedAt = $updatedAt;
return $this;
}
}