/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 获取验证码 */ public class A_A00001 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String mail;//邮箱 /** *邮箱 */ public void setMail(String mail) { this.mail=mail; } /** *邮箱 */ public String getMail() { return this.mail; } String type;//类型 /** *类型 */ public void setType(String type) { this.type=type; } /** *类型 */ public String getType() { return this.type; } }