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

📄 car_sqdform.java

📁 办公自动化项目
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -