A_A00003.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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_A00003 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String userName;//用户名
  13. /**
  14. *用户名
  15. */
  16. public void setUserName(String userName) {
  17. this.userName=userName;
  18. }
  19. /**
  20. *用户名
  21. */
  22. public String getUserName() {
  23. return this.userName;
  24. }
  25. String password;//密码
  26. /**
  27. *密码
  28. */
  29. public void setPassword(String password) {
  30. this.password=password;
  31. }
  32. /**
  33. *密码
  34. */
  35. public String getPassword() {
  36. return this.password;
  37. }
  38. String mail;//邮箱
  39. /**
  40. *邮箱
  41. */
  42. public void setMail(String mail) {
  43. this.mail=mail;
  44. }
  45. /**
  46. *邮箱
  47. */
  48. public String getMail() {
  49. return this.mail;
  50. }
  51. String verificationCode;//验证码
  52. /**
  53. *验证码
  54. */
  55. public void setVerificationCode(String verificationCode) {
  56. this.verificationCode=verificationCode;
  57. }
  58. /**
  59. *验证码
  60. */
  61. public String getVerificationCode() {
  62. return this.verificationCode;
  63. }
  64. }