Column.php 982 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace inter\mysqlStruct;
  3. class Column
  4. {
  5. private $name;
  6. private $type;
  7. private $length;
  8. private $nullable;
  9. private $default;
  10. private $keyType;
  11. private $comment;
  12. public function SetName(string $val): self
  13. {
  14. $this->name = $val;
  15. return $this;
  16. }
  17. public function GetName(): string
  18. {
  19. return $this->name;
  20. }
  21. public function SetComment(string $val): self
  22. {
  23. $this->comment = $val;
  24. return $this;
  25. }
  26. public function GetComment(): string
  27. {
  28. return $this->comment;
  29. }
  30. public function SetType(string $val): self
  31. {
  32. $this->type = $val;
  33. return $this;
  34. }
  35. public function GetType(): string
  36. {
  37. return $this->type;
  38. }
  39. public function SetKeyType(string $val): self
  40. {
  41. $this->keyType = $val;
  42. return $this;
  43. }
  44. public function GetKeyType(): string
  45. {
  46. return $this->keyType;
  47. }
  48. }