A_B00026.java 950 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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_B00026 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String newPassword;//密码
  13. /**
  14. *密码
  15. */
  16. public void setNewPassword(String newPassword) {
  17. this.newPassword=newPassword;
  18. }
  19. /**
  20. *密码
  21. */
  22. public String getNewPassword() {
  23. return this.newPassword;
  24. }
  25. String mail;//邮箱
  26. /**
  27. *邮箱
  28. */
  29. public void setMail(String mail) {
  30. this.mail=mail;
  31. }
  32. /**
  33. *邮箱
  34. */
  35. public String getMail() {
  36. return this.mail;
  37. }
  38. String verificationCode;//验证码
  39. /**
  40. *验证码
  41. */
  42. public void setVerificationCode(String verificationCode) {
  43. this.verificationCode=verificationCode;
  44. }
  45. /**
  46. *验证码
  47. */
  48. public String getVerificationCode() {
  49. return this.verificationCode;
  50. }
  51. }