12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- 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 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;
- }
- }
|