You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuticateUsersDbo.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. /**
  3. * AUTO GENERATED BY LUTICATE GENERATOR
  4. * ANY CHANGES WILL BE OVERWRITTEN
  5. */
  6. namespace Luticate\Auth\DBO;
  7. use Luticate\Utils\LuDbo;
  8. class LuticateUsersDbo extends LuDbo {
  9. public function jsonSerialize()
  10. {
  11. return array(
  12. "Id" => $this->_id,
  13. "Username" => $this->_username,
  14. "Email" => $this->_email,
  15. "Password" => $this->_password,
  16. "Salt" => $this->_salt
  17. );
  18. }
  19. /**
  20. * @var integer
  21. */
  22. protected $_id;
  23. public function getId()
  24. {
  25. return $this->_id;
  26. }
  27. public function setId($value)
  28. {
  29. $this->_id = $value;
  30. }
  31. /**
  32. * @var string
  33. */
  34. protected $_username;
  35. public function getUsername()
  36. {
  37. return $this->_username;
  38. }
  39. public function setUsername($value)
  40. {
  41. $this->_username = $value;
  42. }
  43. /**
  44. * @var string
  45. */
  46. protected $_email;
  47. public function getEmail()
  48. {
  49. return $this->_email;
  50. }
  51. public function setEmail($value)
  52. {
  53. $this->_email = $value;
  54. }
  55. /**
  56. * @var string
  57. */
  58. protected $_password;
  59. public function getPassword()
  60. {
  61. return $this->_password;
  62. }
  63. public function setPassword($value)
  64. {
  65. $this->_password = $value;
  66. }
  67. /**
  68. * @var string
  69. */
  70. protected $_salt;
  71. public function getSalt()
  72. {
  73. return $this->_salt;
  74. }
  75. public function setSalt($value)
  76. {
  77. $this->_salt = $value;
  78. }
  79. }