| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | /** * 系统服务 */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 mailOrPhone;//邮箱/手机	/**	 *邮箱/手机	 */	public void setMailOrPhone(String mailOrPhone) {		this.mailOrPhone=mailOrPhone;	}	/**	 *邮箱/手机	 */	public String getMailOrPhone() {		return this.mailOrPhone;	}	String type;//类型(1-注册 2-找回密码 3-登录 4-修改手机号 5-子账号验证 6-无手机号验证)	/**	 *类型(1-注册 2-找回密码 3-登录 4-修改手机号 5-子账号验证 6-无手机号验证)	 */	public void setType(String type) {		this.type=type;	}	/**	 *类型(1-注册 2-找回密码 3-登录 4-修改手机号 5-子账号验证 6-无手机号验证)	 */	public String getType() {		return this.type;	}	String channel;//消息通道(1-手机 2-邮箱)	/**	 *消息通道(1-手机 2-邮箱)	 */	public void setChannel(String channel) {		this.channel=channel;	}	/**	 *消息通道(1-手机 2-邮箱)	 */	public String getChannel() {		return this.channel;	}}
 |