A_B00020.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_B00020 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String certName;//姓名
  13. /**
  14. *姓名
  15. */
  16. public void setCertName(String certName) {
  17. this.certName=certName;
  18. }
  19. /**
  20. *姓名
  21. */
  22. public String getCertName() {
  23. return this.certName;
  24. }
  25. String certNo;//身份证号
  26. /**
  27. *身份证号
  28. */
  29. public void setCertNo(String certNo) {
  30. this.certNo=certNo;
  31. }
  32. /**
  33. *身份证号
  34. */
  35. public String getCertNo() {
  36. return this.certNo;
  37. }
  38. String certType;//用户类型(0-个人 1-企业)
  39. /**
  40. *用户类型(0-个人 1-企业)
  41. */
  42. public void setCertType(String certType) {
  43. this.certType=certType;
  44. }
  45. /**
  46. *用户类型(0-个人 1-企业)
  47. */
  48. public String getCertType() {
  49. return this.certType;
  50. }
  51. String certFile;//文件id
  52. /**
  53. *文件id
  54. */
  55. public void setCertFile(String certFile) {
  56. this.certFile=certFile;
  57. }
  58. /**
  59. *文件id
  60. */
  61. public String getCertFile() {
  62. return this.certFile;
  63. }
  64. }