123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- namespace Plugin\Favourite\Entity;
- use App\Core\Entity;
- use DateTimeInterface;
- class Favourite extends Entity
- {
-
-
- private int $note_id;
- private int $gsactor_id;
- private \DateTimeInterface $created;
- private \DateTimeInterface $modified;
- public function setNoteId(int $note_id): self
- {
- $this->note_id = $note_id;
- return $this;
- }
- public function getNoteId(): int
- {
- return $this->note_id;
- }
- public function setGSActorId(int $gsactor_id): self
- {
- $this->gsactor_id = $gsactor_id;
- return $this;
- }
- public function getGSActorId(): int
- {
- return $this->gsactor_id;
- }
- public function setCreated(DateTimeInterface $created): self
- {
- $this->created = $created;
- return $this;
- }
- public function getCreated(): DateTimeInterface
- {
- return $this->created;
- }
- public function setModified(DateTimeInterface $modified): self
- {
- $this->modified = $modified;
- return $this;
- }
- public function getModified(): DateTimeInterface
- {
- return $this->modified;
- }
-
-
- public static function schemaDef()
- {
- return [
- 'name' => 'favourite',
- 'fields' => [
- 'note_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'App\Entity\Note.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'note that is the favorite of'],
- 'gsactor_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'App\Entity\GSActor.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'actor who favourited this note'],
- 'created' => ['type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'],
- 'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'],
- ],
- 'primary key' => ['note_id', 'gsactor_id'],
- 'indexes' => [
- 'fave_note_id_idx' => ['note_id'],
- 'fave_actor_id_idx' => ['gsactor_id', 'modified'],
- 'fave_modified_idx' => ['modified'],
- ],
- ];
- }
- }
|