ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.ilDclTableViewNumberDefaultValue.php
Go to the documentation of this file.
1 <?php
2 
20 declare(strict_types=1);
21 
23 {
34  protected ?int $id;
42  protected int $tview_set_id;
49  protected int $value;
50 
55  public static function returnDbTableName(): string
56  {
57  return "il_dcl_stloc2_default";
58  }
59 
60  public function getId(): int
61  {
62  return $this->id;
63  }
64 
65  public function setId(int $id): void
66  {
67  $this->id = $id;
68  }
69 
70  public function getTviewSetId(): int
71  {
72  return $this->tview_set_id;
73  }
74 
75  public function setTviewSetId(int $tview_set_id): void
76  {
77  $this->tview_set_id = $tview_set_id;
78  }
79 
80  public function getValue(): int
81  {
82  return $this->value;
83  }
84 
85  public function setValue(int $value): void
86  {
87  $this->value = $value;
88  }
89 }