ResumeActionForm.java~1~
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:4k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- package com.chinacannel.xlwell.struts.ActionForm;
- import javax.servlet.http.*;
- import org.apache.struts.action.*;
- public class ResumeActionForm extends ActionForm {
- private String sex;
- private String name;
- private String birthday;
- private String nativeplace;
- private String polity;
- private String marriage;
- private String education;
- private String specialty;
- private String graduate;
- private String experience;
- private String tel;
- private String address;
- private String postCode;
- private String power;
- private String introduce;
- private String email;
- private String year;
- private String month;
- private String day;
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public String getEducation() {
- return education;
- }
- public String getExperience() {
- return experience;
- }
- public String getGraduate() {
- return graduate;
- }
- public String getIntroduce() {
- return introduce;
- }
- public String getMarriage() {
- return marriage;
- }
- public String getNativeplace() {
- return nativeplace;
- }
- public String getPolity() {
- return polity;
- }
- public String getPostCode() {
- return postCode;
- }
- public String getPower() {
- return power;
- }
- public String getSex() {
- return sex;
- }
- public String getSpecialty() {
- return specialty;
- }
- public String getTel() {
- return tel;
- }
- public String getEmail() {
- return email;
- }
- public String getName() {
- return name;
- }
- public String getBirthday() {
- return birthday;
- }
- public String getDay() {
- return day;
- }
- public String getMonth() {
- return month;
- }
- public String getYear() {
- return year;
- }
- public void setEducation(String education) {
- this.education = education;
- }
- public void setExperience(String experience) {
- this.experience = experience;
- }
- public void setGraduate(String graduate) {
- this.graduate = graduate;
- }
- public void setIntroduce(String introduce) {
- this.introduce = introduce;
- }
- public void setMarriage(String marriage) {
- this.marriage = marriage;
- }
- public void setNativeplace(String nativeplace) {
- this.nativeplace = nativeplace;
- }
- public void setPolity(String polity) {
- this.polity = polity;
- }
- public void setPostCode(String postCode) {
- this.postCode = postCode;
- }
- public void setPower(String power) {
- this.power = power;
- }
- public void setSex(String sex) {
- this.sex = sex;
- }
- public void setSpecialty(String specialty) {
- this.specialty = specialty;
- }
- public void setTel(String tel) {
- this.tel = tel;
- }
- public void setEmail(String email) {
- this.email = email;
- }
- public void setName(String name) {
- this.name = name;
- }
- public void setBirthday(String birthday) {
- this.birthday = birthday;
- }
- public void setDay(String day) {
- this.day = day;
- }
- public void setMonth(String month) {
- this.month = month;
- }
- public void setYear(String year) {
- this.year = year;
- }
- 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) {
- }
- }