| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | 
							- /**
 
-  * 系统服务
 
-  */
 
- package com.miniframe.generate.comm.system;
 
- import com.miniframe.core.BaseMapModel;
 
- import java.io.Serializable;
 
- /**
 
-  * 补寄发票
 
-  */
 
- public class D_C00015 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 oldPassword;//原密码
 
- 	/**
 
- 	 *原密码
 
- 	 */
 
- 	public void setOldPassword(String oldPassword) {
 
- 		this.oldPassword=oldPassword;
 
- 	}
 
- 	/**
 
- 	 *原密码
 
- 	 */
 
- 	public String getOldPassword() {
 
- 		return this.oldPassword;
 
- 	}
 
- 	String authCode;//验证码
 
- 	/**
 
- 	 *验证码
 
- 	 */
 
- 	public void setAuthCode(String authCode) {
 
- 		this.authCode=authCode;
 
- 	}
 
- 	/**
 
- 	 *验证码
 
- 	 */
 
- 	public String getAuthCode() {
 
- 		return this.authCode;
 
- 	}
 
- 	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;
 
- 	}
 
- }
 
 
  |