car_sqdform.java

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

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

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.*;

public class Car_sqdForm extends ActionForm {
     private String auser;//输出
     private int id;//输入
     private String cartype;

     private String gagebreakout;
     private String gagegiveback;
     private String excuse;
     private String examine;
//     public Car_sqdForm(){
//         this.examine="同意";
//     }

//     private List car_type;
//
//     public Car_sqdForm() {
//       car_type = new ArrayList();
//       //car_type.add(new Apply().getCartype());
//
//   }

     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 getGagebreakout() {
        return gagebreakout;
    }

    public String getGagegiveback() {
        return gagegiveback;
    }

    public String getExcuse() {
        return excuse;
    }

    public String getAuser() {
        return auser;
    }

    public String getCartype() {
        return cartype;
    }

    public int getId() {
        return id;
    }

    public String getExamine() {
        return examine;
    }

    public void setGagebreakout(String gagebreakout) {
        this.gagebreakout = gagebreakout;
    }

    public void setGagegiveback(String gagegiveback) {
        this.gagegiveback = gagegiveback;
    }

    public void setExcuse(String excuse) {
        this.excuse = excuse;
    }

    public void setAuser(String auser) {
        this.auser = auser;
    }

    public void setCartype(String cartype) {
        this.cartype = cartype;
    }

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

    public void setExamine(String examine) {
        this.examine = examine;
    }


}

⌨️ 快捷键说明

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