123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 修改密码
- */
- public class D_B00003 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String pwdType;//密码类别
- /**
- *密码类别
- */
- public void setPwdType(String pwdType) {
- this.pwdType=pwdType;
- }
- /**
- *密码类别
- */
- public String getPwdType() {
- return this.pwdType;
- }
- String telNo;//手机号
- /**
- *手机号
- */
- public void setTelNo(String telNo) {
- this.telNo=telNo;
- }
- /**
- *手机号
- */
- public String getTelNo() {
- return this.telNo;
- }
- String userId;//用户id
- /**
- *用户id
- */
- public void setUserId(String userId) {
- this.userId=userId;
- }
- /**
- *用户id
- */
- public String getUserId() {
- return this.userId;
- }
- }
|