| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 注册 */public class A_A00003 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String userName;//用户名	/**	 *用户名	 */	public void setUserName(String userName) {		this.userName=userName;	}	/**	 *用户名	 */	public String getUserName() {		return this.userName;	}	String password;//密码	/**	 *密码	 */	public void setPassword(String password) {		this.password=password;	}	/**	 *密码	 */	public String getPassword() {		return this.password;	}	String mailOrPhone;//邮箱或手机	/**	 *邮箱或手机	 */	public void setMailOrPhone(String mailOrPhone) {		this.mailOrPhone=mailOrPhone;	}	/**	 *邮箱或手机	 */	public String getMailOrPhone() {		return this.mailOrPhone;	}	String verificationCode;//验证码	/**	 *验证码	 */	public void setVerificationCode(String verificationCode) {		this.verificationCode=verificationCode;	}	/**	 *验证码	 */	public String getVerificationCode() {		return this.verificationCode;	}	String channel;//消息通道(1-手机 2-邮箱)	/**	 *消息通道(1-手机 2-邮箱)	 */	public void setChannel(String channel) {		this.channel=channel;	}	/**	 *消息通道(1-手机 2-邮箱)	 */	public String getChannel() {		return this.channel;	}}
 |