userinfobean.java

来自「是一个用VB编写得银行ATM机交易的程序」· Java 代码 · 共 63 行

JAVA
63
字号
/*
 * UserinfoBean.java
 *
 * Created on 2008年2月20日, 上午7:38
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.myapp.struts.forvenus;

/**
 *
 * @author Administrator
 */
public class UserinfoBean {
    
    /** Creates a new instance of UserinfoBean */
    public UserinfoBean(
            String UserName,
            String ULogPass,
            String UpayPass,
            String UserGroups,
            String URealName,
            String UCardID,
            String PKI,
            String SKey,
            String email,
            String UPhone,
            double Account,
            String LetterNum,
            String LetterKey
            ) {
        this.UserName = UserName;
        this.ULogPass = ULogPass;
        this.UpayPass = UpayPass;
        this.UserGroups = UserGroups;
        this.URealName = URealName;
        this.UCardID = UCardID;
        this.PKI = PKI;
        this.SKey = SKey;
        this.email = email;
        this.UPhone = UPhone;
        this.Account = Account;
        this.LetterNum = LetterNum;
        this.LetterKey = LetterKey;
    }
    public String UserName;
    public String ULogPass;
    public String UpayPass;
    public String UserGroups;
    public String URealName;
    public String UCardID;
    public String PKI;
    public String SKey;
    public String email;
    public String UPhone;
    public double Account;
    public String LetterNum;
    public String LetterKey;
    
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?