Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 25 |
|
0.00% |
0 / 17 |
CRAP | |
0.00% |
0 / 1 |
| Mailregelflt | |
0.00% |
0 / 25 |
|
0.00% |
0 / 17 |
342 | |
0.00% |
0 / 1 |
| getGeaendertam | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setGeaendertam | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
6 | |||
| getGeaendertvon | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setGeaendertvon | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getLfdnr | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| getPos | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setPos | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getRegellfdnr | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setRegellfdnr | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getSchluessel | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setSchluessel | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getVergleich | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setVergleich | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getVerknuepfung | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setVerknuepfung | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| getWert | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| setWert | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Satag\AmicronEntityBundle\Entity; |
| 6 | |
| 7 | use Doctrine\DBAL\Types\Types; |
| 8 | use Doctrine\ORM\Mapping as ORM; |
| 9 | |
| 10 | #[ORM\Entity] |
| 11 | #[ORM\Table(name: 'MAILREGELFLT')] |
| 12 | #[ORM\Index(columns: ['regellfdnr'], name: 'MAILREGELFLT_REGELLFDNR_FK')] |
| 13 | class Mailregelflt |
| 14 | { |
| 15 | #[ORM\Column(name: 'geaendertam', type: Types::DATETIME_IMMUTABLE, nullable: true)] |
| 16 | private ?\DateTimeImmutable $geaendertam = null; |
| 17 | |
| 18 | #[ORM\Column(name: 'geaendertvon', type: Types::STRING, length: 3, nullable: true)] |
| 19 | private ?string $geaendertvon = null; |
| 20 | |
| 21 | #[ORM\Column(name: 'lfdnr', type: Types::INTEGER, nullable: false)] |
| 22 | #[ORM\Id] |
| 23 | #[ORM\GeneratedValue(strategy: 'SEQUENCE')] |
| 24 | #[ORM\SequenceGenerator(sequenceName: 'GEN_LFDNR', allocationSize: 1, initialValue: 1)] |
| 25 | public private(set) ?int $lfdnr = null; |
| 26 | |
| 27 | #[ORM\Column(name: 'pos', type: Types::INTEGER, nullable: true)] |
| 28 | private ?int $pos = null; |
| 29 | |
| 30 | #[ORM\ManyToOne(targetEntity: Mailregeln::class)] |
| 31 | #[ORM\JoinColumn(name: 'regellfdnr', referencedColumnName: 'lfdnr')] |
| 32 | private ?Mailregeln $regellfdnr = null; |
| 33 | |
| 34 | #[ORM\Column(name: 'schluessel', type: Types::INTEGER, nullable: true)] |
| 35 | private ?int $schluessel = null; |
| 36 | |
| 37 | #[ORM\Column(name: 'vergleich', type: Types::INTEGER, nullable: true)] |
| 38 | private ?int $vergleich = null; |
| 39 | |
| 40 | #[ORM\Column(name: 'verknuepfung', type: Types::STRING, length: 1, nullable: true)] |
| 41 | private ?string $verknuepfung = null; |
| 42 | |
| 43 | #[ORM\Column(name: 'wert', type: Types::STRING, length: 255, nullable: true)] |
| 44 | private ?string $wert = null; |
| 45 | |
| 46 | public function getGeaendertam(): ?\DateTimeImmutable |
| 47 | { |
| 48 | return $this->geaendertam; |
| 49 | } |
| 50 | |
| 51 | public function setGeaendertam(\DateTimeImmutable|\DateTime|null $geaendertam): static |
| 52 | { |
| 53 | $this->geaendertam = $geaendertam instanceof \DateTime ? \DateTimeImmutable::createFromMutable($geaendertam) : $geaendertam; |
| 54 | |
| 55 | return $this; |
| 56 | } |
| 57 | |
| 58 | public function getGeaendertvon(): ?string |
| 59 | { |
| 60 | return $this->geaendertvon; |
| 61 | } |
| 62 | |
| 63 | public function setGeaendertvon(?string $geaendertvon): static |
| 64 | { |
| 65 | $this->geaendertvon = $geaendertvon; |
| 66 | |
| 67 | return $this; |
| 68 | } |
| 69 | |
| 70 | public function getLfdnr(): ?int |
| 71 | { |
| 72 | return $this->lfdnr; |
| 73 | } |
| 74 | |
| 75 | public function getPos(): ?int |
| 76 | { |
| 77 | return $this->pos; |
| 78 | } |
| 79 | |
| 80 | public function setPos(?int $pos): self |
| 81 | { |
| 82 | $this->pos = $pos; |
| 83 | |
| 84 | return $this; |
| 85 | } |
| 86 | |
| 87 | public function getRegellfdnr(): ?Mailregeln |
| 88 | { |
| 89 | return $this->regellfdnr; |
| 90 | } |
| 91 | |
| 92 | public function setRegellfdnr(?Mailregeln $regellfdnr): self |
| 93 | { |
| 94 | $this->regellfdnr = $regellfdnr; |
| 95 | |
| 96 | return $this; |
| 97 | } |
| 98 | |
| 99 | public function getSchluessel(): ?int |
| 100 | { |
| 101 | return $this->schluessel; |
| 102 | } |
| 103 | |
| 104 | public function setSchluessel(?int $schluessel): self |
| 105 | { |
| 106 | $this->schluessel = $schluessel; |
| 107 | |
| 108 | return $this; |
| 109 | } |
| 110 | |
| 111 | public function getVergleich(): ?int |
| 112 | { |
| 113 | return $this->vergleich; |
| 114 | } |
| 115 | |
| 116 | public function setVergleich(?int $vergleich): self |
| 117 | { |
| 118 | $this->vergleich = $vergleich; |
| 119 | |
| 120 | return $this; |
| 121 | } |
| 122 | |
| 123 | public function getVerknuepfung(): ?string |
| 124 | { |
| 125 | return $this->verknuepfung; |
| 126 | } |
| 127 | |
| 128 | public function setVerknuepfung(?string $verknuepfung): self |
| 129 | { |
| 130 | $this->verknuepfung = $verknuepfung; |
| 131 | |
| 132 | return $this; |
| 133 | } |
| 134 | |
| 135 | public function getWert(): ?string |
| 136 | { |
| 137 | return $this->wert; |
| 138 | } |
| 139 | |
| 140 | public function setWert(?string $wert): self |
| 141 | { |
| 142 | $this->wert = $wert; |
| 143 | |
| 144 | return $this; |
| 145 | } |
| 146 | } |