opaf.java

来自「spring+hibernate+struts开发的校务oa系统」· Java 代码 · 共 94 行

JAVA
94
字号
package com.yondor.oa.webapp.initialize;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

public class OpAF extends ActionForm{
	
	private String op;
	private String password;
	private String firstname;
	private String lastname;
	private Long sex;
	private Long age;
	private Long mobiletel;
	private Long telephone;
	private String address;
	private String duty;
	private Long hols;

	public String getAddress() {
		return address;
	}
	public void setAddress(String address) {
		this.address = address;
	}
	public Long getAge() {
		return age;
	}
	public void setAge(Long age) {
		this.age = age;
	}
	public String getDuty() {
		return duty;
	}
	public void setDuty(String duty) {
		this.duty = duty;
	}
	public String getFirstname() {
		return firstname;
	}
	public void setFirstname(String firstname) {
		this.firstname = firstname;
	}
	public Long getHols() {
		return hols;
	}
	public void setHols(Long hols) {
		this.hols = hols;
	}
	public String getLastname() {
		return lastname;
	}
	public void setLastname(String lastname) {
		this.lastname = lastname;
	}
	public Long getMobiletel() {
		return mobiletel;
	}
	public void setMobiletel(Long mobiletel) {
		this.mobiletel = mobiletel;
	}
	public String getOp() {
		return op;
	}
	public void setOp(String op) {
		this.op = op;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public Long getSex() {
		return sex;
	}
	public void setSex(Long sex) {
		this.sex = sex;
	}
	public Long getTelephone() {
		return telephone;
	}
	public void setTelephone(Long telephone) {
		this.telephone = telephone;
	}

	@Override
	public void reset(ActionMapping mapping, HttpServletRequest request) {
		// 
	}
}

⌨️ 快捷键说明

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