A_A00003.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 mailOrPhone;//邮箱或手机
  39. /**
  40. *邮箱或手机
  41. */
  42. public void setMailOrPhone(String mailOrPhone) {
  43. this.mailOrPhone=mailOrPhone;
  44. }
  45. /**
  46. *邮箱或手机
  47. */
  48. public String getMailOrPhone() {
  49. return this.mailOrPhone;
  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. String channel;//消息通道(1-手机 2-邮箱)
  65. /**
  66. *消息通道(1-手机 2-邮箱)
  67. */
  68. public void setChannel(String channel) {
  69. this.channel=channel;
  70. }
  71. /**
  72. *消息通道(1-手机 2-邮箱)
  73. */
  74. public String getChannel() {
  75. return this.channel;
  76. }
  77. }