AddUserParamBean.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. namespace Tool\ShanTaoTool\Bean\BaseAuth;
  3. use Tool\ShanTaoTool\Bean\BaseBean;
  4. class AddUserParamBean extends BaseBean
  5. {
  6. private $userPhone;//手机号码
  7. private $userName;//用户名称
  8. private $userEmail;//用户邮箱
  9. private $userPassword;//用户密码
  10. private $userProjectId;//项目ID
  11. /**
  12. * @return mixed
  13. */
  14. public function getUserProjectId()
  15. {
  16. return $this->userProjectId;
  17. }
  18. /**
  19. * @param mixed $userProjectId
  20. */
  21. public function setUserProjectId($userProjectId)
  22. {
  23. $this->userProjectId = $userProjectId;
  24. }
  25. /**
  26. * @return mixed
  27. */
  28. public function getUserPhone()
  29. {
  30. return $this->userPhone;
  31. }
  32. /**
  33. * @param mixed $userPhone
  34. */
  35. public function setUserPhone($userPhone)
  36. {
  37. $this->userPhone = $userPhone;
  38. }
  39. /**
  40. * @return mixed
  41. */
  42. public function getUserName()
  43. {
  44. return $this->userName;
  45. }
  46. /**
  47. * @param mixed $userName
  48. */
  49. public function setUserName($userName)
  50. {
  51. $this->userName = $userName;
  52. }
  53. /**
  54. * @return mixed
  55. */
  56. public function getUserEmail()
  57. {
  58. return $this->userEmail;
  59. }
  60. /**
  61. * @param mixed $userEmail
  62. */
  63. public function setUserEmail($userEmail)
  64. {
  65. $this->userEmail = $userEmail;
  66. }
  67. /**
  68. * @return mixed
  69. */
  70. public function getUserPassword()
  71. {
  72. return $this->userPassword;
  73. }
  74. /**
  75. * @param mixed $userPassword
  76. */
  77. public function setUserPassword($userPassword)
  78. {
  79. $this->userPassword = $userPassword;
  80. }
  81. }