| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | 
							- /**
 
-  * 系统服务
 
-  */
 
- package com.miniframe.generate.comm.system;
 
- import com.miniframe.core.BaseMapModel;
 
- import java.io.Serializable;
 
- /**
 
-  * 找回密码
 
-  */
 
- public class A_B00026 extends BaseMapModel implements Serializable {
 
- 	private static final long serialVersionUID = -1463838678425832212L;
 
- 	String newPassword;//密码
 
- 	/**
 
- 	 *密码
 
- 	 */
 
- 	public void setNewPassword(String newPassword) {
 
- 		this.newPassword=newPassword;
 
- 	}
 
- 	/**
 
- 	 *密码
 
- 	 */
 
- 	public String getNewPassword() {
 
- 		return this.newPassword;
 
- 	}
 
- 	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;
 
- 	}
 
- }
 
 
  |