logonactionform.java

来自「一个管理系统 用java作的」· Java 代码 · 共 53 行

JAVA
53
字号
/*
 *  僔僗僥儉丂丂丗 嶳廏HR僔僗僥儉奐敪
 *  僒僽僔僗僥儉丗 WEB僔僗僥儉
 *
 *   VER    丂曄峏擔     丂晹壽      扴摉幰  丂曄峏撪梕
 *  -----------------------------------------------------------------
 *  V1.00 丂丂${date} (ShanXiu丂Soft)  Tuwenjie   弶斉
 *
 *       (C) Copyright SHANXIU CORPORATION 2006
 *                     All Rights Reserved.
 *
 */

package net.shanxiu.HR.actionform;


import org.apache.struts.action.ActionForm;

/**
 * LogonActionForm
 */
public class LogonActionForm extends ActionForm {

    private String id;
    private String psw;
    /**
     * @return Returns the iD.
     */
    public String getId() {
        return id;
    }

    /**
     * @param id The id to set.
     */
    public void setId(String id) {
        this.id = id;
    }
    /**
     * @return Returns the psw.
     */
    public String getPsw() {
        return psw;
    }
    /**
     * @param psw The psw to set.
     */
    public void setPsw(String psw) {
        this.psw = psw;
    }
  
}

⌨️ 快捷键说明

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