| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 实名认证 */public class D_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;//用户类型	/**	 *用户类型	 */	public void setCertType(String certType) {		this.certType=certType;	}	/**	 *用户类型	 */	public String getCertType() {		return this.certType;	}	String authenticationState;//认证状态	/**	 *认证状态	 */	public void setAuthenticationState(String authenticationState) {		this.authenticationState=authenticationState;	}	/**	 *认证状态	 */	public String getAuthenticationState() {		return this.authenticationState;	}}
 |