huresmanuserform.java

来自「用JAVA环境开发的人力资源管理系统」· Java 代码 · 共 104 行

JAVA
104
字号
/*
 * Created on 2006-11-4
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package com.liyu.form;

import java.util.ArrayList;
import java.util.List;

import org.apache.struts.action.ActionForm;

import com.liyu.beans.FMStatiInfo;
import com.liyu.beans.JobStatiInfo;
import com.liyu.beans.PersonBaseInfo;

/**
 * @author Administrator
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class HuResManUserForm extends ActionForm{
    /**
     * @return Returns the fn.
     */
    public String getFn() {
        return Fn;
    }
    /**
     * @param fn The fn to set.
     */
    public void setFn(String fn) {
        Fn = fn;
    }
    /**
     * @return Returns the personBaseInfo.
     */
    public PersonBaseInfo getPersonBaseInfo() {
        return personBaseInfo;
    }
    /**
     * @param personBaseInfo The personBaseInfo to set.
     */
    public void setPersonBaseInfo(PersonBaseInfo personBaseInfo) {
        this.personBaseInfo = personBaseInfo;
    }
    private String Fn;
	private PersonBaseInfo personBaseInfo = new PersonBaseInfo();
	private FMStatiInfo fMStatiInfo = new FMStatiInfo();
	private JobStatiInfo jobStatiInfo = new JobStatiInfo();
	private List fmStaticList = new ArrayList();
	private List jobStaticList = new ArrayList();
    /**
     * @return Returns the fmStaticList.
     */
    public List getFmStaticList() {
        return fmStaticList;
    }
    /**
     * @param fmStaticList The fmStaticList to set.
     */
    public void setFmStaticList(List fmStaticList) {
        this.fmStaticList = fmStaticList;
    }
    /**
     * @return Returns the jobStaticList.
     */
    public List getJobStaticList() {
        return jobStaticList;
    }
    /**
     * @param jobStaticList The jobStaticList to set.
     */
    public void setJobStaticList(List jobStaticList) {
        this.jobStaticList = jobStaticList;
    }
    /**
     * @return Returns the jobStatiInfo.
     */
    public JobStatiInfo getJobStatiInfo() {
        return jobStatiInfo;
    }
    /**
     * @param jobStatiInfo The jobStatiInfo to set.
     */
    public void setJobStatiInfo(JobStatiInfo jobStatiInfo) {
        this.jobStatiInfo = jobStatiInfo;
    }
    /**
     * @return Returns the fMStatiInfo.
     */
    public FMStatiInfo getFMStatiInfo() {
        return fMStatiInfo;
    }
    /**
     * @param statiInfo The fMStatiInfo to set.
     */
    public void setFMStatiInfo(FMStatiInfo statiInfo) {
        fMStatiInfo = statiInfo;
    }
}

⌨️ 快捷键说明

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