<?phpnamespace App\Entity;use App\Repository\CardRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=CardRepository::class) */class Card{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="integer") */ private $user_id; /** * @ORM\Column(type="integer") */ private $pool_id; /** * @ORM\Column(type="integer") */ private $reference_id; /** * @ORM\Column(type="integer") */ private $reference_version; /** * @ORM\Column(type="integer") */ private $copy_id; /** * @ORM\Column(type="integer") */ private $copy_version; /** * @ORM\Column(type="text") */ private $task; /** * @ORM\Column(type="text") */ private $solution; /** * @ORM\Column(type="integer") */ private $classification_id; /** * @ORM\Column(type="integer") */ private $version; /** * @ORM\Column(type="integer") */ private $correct; /** * @ORM\Column(type="integer") */ private $correct2; /** * @ORM\Column(type="integer") */ private $skilled; /** * @ORM\Column(type="integer") */ private $delflag; /** * @ORM\Column(type="datetime") */ private $created_date; /** * @ORM\Column(type="datetime") */ private $modify_date; public function getId(): ?int { return $this->id; } public function getUserId(): ?int { return $this->user_id; } public function setUserId(int $user_id): self { $this->user_id = $user_id; return $this; } public function getPoolId(): ?int { return $this->pool_id; } public function setPoolId(int $pool_id): self { $this->pool_id = $pool_id; return $this; } public function getReferenceId(): ?int { return $this->reference_id; } public function setReferenceId(int $reference_id): self { $this->reference_id = $reference_id; return $this; } public function getCopyId(): ?int { return $this->copy_id; } public function setCopyId(int $copy_id): self { $this->copy_id = $copy_id; return $this; } public function getTask(): ?string { return $this->task; } public function setTask(string $task): self { $this->task = $task; return $this; } public function getSolution(): ?string { return $this->solution; } public function setSolution(string $solution): self { $this->solution = $solution; return $this; } public function getCorrect(): ?int { return $this->correct; } public function setCorrect(int $correct): self { $this->correct = $correct; return $this; } public function getCorrect2(): ?int { return $this->correct2; } public function setCorrect2(int $correct2): self { $this->correct2 = $correct2; return $this; } public function getSkilled(): ?int { return $this->skilled; } public function setSkilled(int $skilled): self { $this->skilled = $skilled; return $this; } public function getCreatedDate(): ?\DateTimeInterface { return $this->created_date; } public function setCreatedDate(\DateTimeInterface $created_date): self { $this->created_date = $created_date; return $this; } public function getModifyDate(): ?\DateTimeInterface { return $this->modify_date; } public function setModifyDate(\DateTimeInterface $modify_date): self { $this->modify_date = $modify_date; return $this; } public function getClassificationId(): ?int { return $this->classification_id; } public function setClassificationId(int $classification_id): self { $this->classification_id = $classification_id; return $this; } public function getDelflag(): ?int { return $this->delflag; } public function setDelflag(int $delflag): self { $this->delflag = $delflag; return $this; } public function getVersion(): ?int { return $this->version; } public function setVersion(int $version): self { $this->version = $version; return $this; } public function getReferenceVersion(): ?int { return $this->reference_version; } public function setReferenceVersion(int $reference_version): self { $this->reference_version = $reference_version; return $this; } public function getCopyVersion(): ?int { return $this->copy_version; } public function setCopyVersion(int $copy_version): self { $this->copy_version = $copy_version; return $this; }}