📄 searchactionform.java
字号:
/*
* 僔僗僥儉丂丂丗 嶳廏HR僔僗僥儉奐敪
* 僒僽僔僗僥儉丗 WEB僔僗僥儉
*
* VER 丂曄峏擔 丂晹壽 扴摉幰 丂曄峏撪梕
* -----------------------------------------------------------------
* V1.00 丂丂${date} (ShanXiu丂Soft) Tuwenjie 弶斉
*
* (C) Copyright SHANXIU CORPORATION 2006
* All Rights Reserved.
*
*/
package net.shanxiu.HR.actionform;
import org.apache.struts.action.ActionForm;
/**
* SearchActionForm
*/
public class SearchActionForm extends ActionForm {
private String id;
private String name;
private String dep_name;
private String b_year; //search in_time from year
private String b_month; //search in_time from month
private String b_day; //search in_time from day
private String e_year; //search in_time to year
private String e_month; //search in_time to month
private String e_day; //search in_time to day
/**
* @return Returns the b_day.
*/
public String getB_day() {
return b_day;
}
/**
* @param b_day The b_day to set.
*/
public void setB_day(String b_day) {
this.b_day = b_day;
}
/**
* @return Returns the b_month.
*/
public String getB_month() {
return b_month;
}
/**
* @param b_month The b_month to set.
*/
public void setB_month(String b_month) {
this.b_month = b_month;
}
/**
* @return Returns the b_year.
*/
public String getB_year() {
return b_year;
}
/**
* @param b_year The b_year to set.
*/
public void setB_year(String b_year) {
this.b_year = b_year;
}
/**
* @return Returns the dep_name.
*/
public String getDep_name() {
return dep_name;
}
/**
* @param dep_name The dep_name to set.
*/
public void setDep_name(String dep_name) {
this.dep_name = dep_name;
}
/**
* @return Returns the e_day.
*/
public String getE_day() {
return e_day;
}
/**
* @param e_day The e_day to set.
*/
public void setE_day(String e_day) {
this.e_day = e_day;
}
/**
* @return Returns the e_month.
*/
public String getE_month() {
return e_month;
}
/**
* @param e_month The e_month to set.
*/
public void setE_month(String e_month) {
this.e_month = e_month;
}
/**
* @return Returns the e_year.
*/
public String getE_year() {
return e_year;
}
/**
* @param e_year The e_year to set.
*/
public void setE_year(String e_year) {
this.e_year = e_year;
}
/**
* @return Returns the id.
*/
public String getId() {
return id;
}
/**
* @param id The id to set.
*/
public void setId(String id) {
this.id = id;
}
/**
* @return Returns the name.
*/
public String getName() {
return name;
}
/**
* @param name The name to set.
*/
public void setName(String name) {
this.name = name;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -