Make more fiields importable

This commit is contained in:
Jan Böhmer 2023-03-13 00:52:22 +01:00
parent 4437f206af
commit 820be46ed3
10 changed files with 35 additions and 29 deletions

View file

@ -57,56 +57,56 @@ class Category extends AbstractPartsContainingDBElement
/**
* @var string
* @ORM\Column(type="text")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected string $partname_hint = '';
/**
* @var string
* @ORM\Column(type="text")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected string $partname_regex = '';
/**
* @var bool
* @ORM\Column(type="boolean")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected bool $disable_footprints = false;
/**
* @var bool
* @ORM\Column(type="boolean")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected bool $disable_manufacturers = false;
/**
* @var bool
* @ORM\Column(type="boolean")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected bool $disable_autodatasheets = false;
/**
* @var bool
* @ORM\Column(type="boolean")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected bool $disable_properties = false;
/**
* @var string
* @ORM\Column(type="text")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected string $default_description = '';
/**
* @var string
* @ORM\Column(type="text")
* @Groups({"full"})
* @Groups({"full", "import"})
*/
protected string $default_comment = '';
/**