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 mail;//邮箱
- /**
- *邮箱
- */
- public void setMail(String mail) {
- this.mail=mail;
- }
- /**
- *邮箱
- */
- public String getMail() {
- return this.mail;
- }
- String verificationCode;//验证码
- /**
- *验证码
- */
- public void setVerificationCode(String verificationCode) {
- this.verificationCode=verificationCode;
- }
- /**
- *验证码
- */
- public String getVerificationCode() {
- return this.verificationCode;
- }
- }
|