A_B00033.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 用户信息修改
  9. */
  10. public class A_B00033 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String uid;//UUID
  13. /**
  14. *UUID
  15. */
  16. public void setUid(String uid) {
  17. this.uid=uid;
  18. }
  19. /**
  20. *UUID
  21. */
  22. public String getUid() {
  23. return this.uid;
  24. }
  25. String nickName;//昵称
  26. /**
  27. *昵称
  28. */
  29. public void setNickName(String nickName) {
  30. this.nickName=nickName;
  31. }
  32. /**
  33. *昵称
  34. */
  35. public String getNickName() {
  36. return this.nickName;
  37. }
  38. String username;//用户名
  39. /**
  40. *用户名
  41. */
  42. public void setUsername(String username) {
  43. this.username=username;
  44. }
  45. /**
  46. *用户名
  47. */
  48. public String getUsername() {
  49. return this.username;
  50. }
  51. String mobileNo;//手机
  52. /**
  53. *手机
  54. */
  55. public void setMobileNo(String mobileNo) {
  56. this.mobileNo=mobileNo;
  57. }
  58. /**
  59. *手机
  60. */
  61. public String getMobileNo() {
  62. return this.mobileNo;
  63. }
  64. String headProfile;//头像
  65. /**
  66. *头像
  67. */
  68. public void setHeadProfile(String headProfile) {
  69. this.headProfile=headProfile;
  70. }
  71. /**
  72. *头像
  73. */
  74. public String getHeadProfile() {
  75. return this.headProfile;
  76. }
  77. String company;//公司
  78. /**
  79. *公司
  80. */
  81. public void setCompany(String company) {
  82. this.company=company;
  83. }
  84. /**
  85. *公司
  86. */
  87. public String getCompany() {
  88. return this.company;
  89. }
  90. String email;//邮箱
  91. /**
  92. *邮箱
  93. */
  94. public void setEmail(String email) {
  95. this.email=email;
  96. }
  97. /**
  98. *邮箱
  99. */
  100. public String getEmail() {
  101. return this.email;
  102. }
  103. }