Table.php 706 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace inter\mysqlStruct;
  3. use inter\utils\Names;
  4. class Table
  5. {
  6. private $name;
  7. /** @var Column[] */
  8. private array $columns;
  9. public function SetName(string $val): self
  10. {
  11. $this->name = $val;
  12. return $this;
  13. }
  14. public function AddColumn(Column $val): self
  15. {
  16. $this->columns[] = $val;
  17. return $this;
  18. }
  19. public function GetName(): string
  20. {
  21. return $this->name;
  22. }
  23. // 驼峰
  24. public function GetNameForHump(): string
  25. {
  26. return ucfirst(Names::Camelize($this->name));
  27. }
  28. /**
  29. * @return Column[]
  30. */
  31. public function GetColumns(): array
  32. {
  33. return $this->columns;
  34. }
  35. }