Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. package com.example.mayingnan.project301;
  2.  
  3. /**
  4. * Created by on 2018/2/25.
  5. */
  6.  
  7. public class User {
  8. private String userId;
  9. private String userName;
  10. private String userPhone;
  11. private String userAddress;
  12. private String userEmail;
  13. private String userPassword;
  14. private String userType;
  15. public User(){
  16. super();
  17. }
  18. public User(String userId,String userName,String userPhone,String userAddress,String userEmail,String userPassword,String userType){
  19. this.userId = userId;
  20. this.userName = userName;
  21. this.userAddress = userAddress;
  22. this.userEmail = userEmail;
  23. this.userPassword = userPassword;
  24. this.userType = userType;
  25. this.userPhone = userPhone;
  26.  
  27. }
  28.  
  29.  
  30.  
  31. public String getUserName() {
  32. return userName;
  33. }
  34.  
  35. public void setUserName(String userName) {
  36. this.userName = userName;
  37. }
  38.  
  39. public String getUserPhone() {
  40. return userPhone;
  41. }
  42.  
  43. public void setUserPhone(String userPhone) {
  44. this.userPhone = userPhone;
  45. }
  46.  
  47. public String getUserAddress() {
  48. return userAddress;
  49. }
  50.  
  51. public void setUserAddress(String userAddress) {
  52. this.userAddress = userAddress;
  53. }
  54.  
  55. public String getUserEmail() {
  56. return userEmail;
  57. }
  58.  
  59. public void setUserEmail(String userEmail) {
  60. this.userEmail = userEmail;
  61. }
  62.  
  63. public String getUserPassword() {
  64. return userPassword;
  65. }
  66.  
  67. public void setUserPassword(String userPassword) {
  68. this.userPassword = userPassword;
  69. }
  70.  
  71. public String getUserType() {
  72. return userType;
  73. }
  74.  
  75. public void setUserType(String userType) {
  76. this.userType = userType;
  77. }
  78.  
  79. public String getId(){
  80. return userId;
  81. }
  82. public void setId(String userId){
  83. this.userId = userId;
  84. }
  85.  
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement