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

📄 enrollmentform.java

📁 网上报名系统,是一个功能很完善的系统,推存给大家,很好用的
💻 JAVA
字号:
package struts.actionform;

import org.apache.struts.action.*;
import vo.*;

public class EnrollmentForm extends ActionForm {
    private String event;
    private WbApplicantInfo wbApplicantInfo = new WbApplicantInfo();
    private String idCard;
    private String message;
    public String getEvent() {
        return event;
    }

    public WbApplicantInfo getWbApplicantInfo() {
        return wbApplicantInfo;
    }

    public String getIdCard() {
        return idCard;
    }

    public String getMessage() {
        return message;
    }

    public void setEvent(String event) {
        this.event = event;
    }

    public void setWbApplicantInfo(WbApplicantInfo wbApplicantInfo) {
        this.wbApplicantInfo = wbApplicantInfo;
    }

    public void setIdCard(String idCard) {
        this.idCard = idCard;
    }

    public void setMessage(String message) {
        this.message = message;
    }

}

⌨️ 快捷键说明

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