querycaractionform.java

来自「办公自动化项目」· Java 代码 · 共 67 行

JAVA
67
字号
package com.t60.oa.web.car;

import java.util.List;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.*;

public class QuerycarActionForm extends ActionForm
{
    private String num;
    private String type;
    private String state;
    private String method;
    private List listtype;
    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) {
    }

    public String getNum() {
        return num;
    }

    public String getState() {
        return state;
    }

    public String getType() {
        return type;
    }

    public String getMethod() {
        return method;
    }

    public List getListtype() {
        return listtype;
    }

    public void setNum(String num) {
        this.num = num;
    }

    public void setState(String state) {
        this.state = state;
    }

    public void setType(String type) {
        this.type = type;
    }

    public void setMethod(String method) {
        this.method = method;
    }

    public void setListtype(List listtype) {
        this.listtype = listtype;
    }
}

⌨️ 快捷键说明

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