/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 实名认证 */ public class A_B00020 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String certName;//姓名 /** *姓名 */ public void setCertName(String certName) { this.certName=certName; } /** *姓名 */ public String getCertName() { return this.certName; } String certNo;//身份证号 /** *身份证号 */ public void setCertNo(String certNo) { this.certNo=certNo; } /** *身份证号 */ public String getCertNo() { return this.certNo; } String certType;//用户类型(0-个人 1-企业) /** *用户类型(0-个人 1-企业) */ public void setCertType(String certType) { this.certType=certType; } /** *用户类型(0-个人 1-企业) */ public String getCertType() { return this.certType; } String certFile;//文件id /** *文件id */ public void setCertFile(String certFile) { this.certFile=certFile; } /** *文件id */ public String getCertFile() { return this.certFile; } }