D_B00003.java 883 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 D_B00003 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pwdType;//密码类别
  13. /**
  14. *密码类别
  15. */
  16. public void setPwdType(String pwdType) {
  17. this.pwdType=pwdType;
  18. }
  19. /**
  20. *密码类别
  21. */
  22. public String getPwdType() {
  23. return this.pwdType;
  24. }
  25. String telNo;//手机号
  26. /**
  27. *手机号
  28. */
  29. public void setTelNo(String telNo) {
  30. this.telNo=telNo;
  31. }
  32. /**
  33. *手机号
  34. */
  35. public String getTelNo() {
  36. return this.telNo;
  37. }
  38. String userId;//用户id
  39. /**
  40. *用户id
  41. */
  42. public void setUserId(String userId) {
  43. this.userId=userId;
  44. }
  45. /**
  46. *用户id
  47. */
  48. public String getUserId() {
  49. return this.userId;
  50. }
  51. }