This commit is contained in:
2022-10-15 22:24:22 +02:00
parent 0057bbcd96
commit 85125c7d6b
19 changed files with 299 additions and 27 deletions

View File

@ -2,10 +2,10 @@
namespace App\Entity;
use App\Repository\TypeDmuRepository;
use App\Repository\DmuCatRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: TypeDmuRepository::class)]
#[ORM\Entity(repositoryClass: DmuCatRepository::class)]
class DmuCat
{
#[ORM\Id]
@ -13,7 +13,7 @@ class DmuCat
#[ORM\Column]
private ?int $id = null;
#[ORM\Column]
#[ORM\Column(nullable: true)]
private ?int $pocheNumber = null;
#[ORM\Column(length: 1000)]