⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logform.java

📁 用户登录,增加,删除,修改,查询数据库,验证码的使用
💻 JAVA
字号:
package com.hanb.log.form;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;

public class LogForm extends ActionForm {
    private String action;
    private int id;
    private String psw;
    private String stuAge;
    private String stuCity;
    private String stuName;
    private String stuSex;
    private String userName;
    public String getAction() {
        return action;
    }

    public void setAction(String action) {
        this.action = action;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public void setStuSex(String stuSex) {
        this.stuSex = stuSex;
    }

    public void setStuName(String stuName) {
        this.stuName = stuName;
    }

    public void setStuCity(String stuCity) {
        this.stuCity = stuCity;
    }

    public void setStuAge(String stuAge) {
        this.stuAge = stuAge;
    }

    public void setPsw(String psw) {
        this.psw = psw;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getId() {
        return id;
    }

    public String getPsw() {
        return psw;
    }

    public String getStuAge() {
        return stuAge;
    }

    public String getStuCity() {
        return stuCity;
    }

    public String getStuName() {
        return stuName;
    }

    public String getStuSex() {
        return stuSex;
    }

    public String getUserName() {
        return userName;
    }

    public ActionErrors validate(ActionMapping actionMapping,
                                 HttpServletRequest httpServletRequest) {
            /** @todo: finish this method, this is just the skeleton.*/
        return null;
    }

    public void reset(ActionMapping actionMapping,
                      HttpServletRequest servletRequest) {
    }
}

⌨️ 快捷键说明

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