first commit
This commit is contained in:
66
hrmsEjb/wenrgise/hrms/vo/HrmOrgHolCalQVO.java
Normal file
66
hrmsEjb/wenrgise/hrms/vo/HrmOrgHolCalQVO.java
Normal file
@@ -0,0 +1,66 @@
|
||||
package wenrgise.hrms.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class HrmOrgHolCalQVO extends BaseQueryVO implements Serializable {
|
||||
private String calendarName;
|
||||
|
||||
private String siteCode;
|
||||
|
||||
private String siteId;
|
||||
|
||||
private String state;
|
||||
|
||||
private String stateId;
|
||||
|
||||
private String stateCode;
|
||||
|
||||
public String getCalendarName() {
|
||||
return this.calendarName;
|
||||
}
|
||||
|
||||
public void setCalendarName(String newCalendarName) {
|
||||
this.calendarName = newCalendarName;
|
||||
}
|
||||
|
||||
public String getSiteCode() {
|
||||
return this.siteCode;
|
||||
}
|
||||
|
||||
public void setSiteCode(String newSiteCode) {
|
||||
this.siteCode = newSiteCode;
|
||||
}
|
||||
|
||||
public String getSiteId() {
|
||||
return this.siteId;
|
||||
}
|
||||
|
||||
public void setSiteId(String newSiteId) {
|
||||
this.siteId = newSiteId;
|
||||
}
|
||||
|
||||
public String getState() {
|
||||
return this.state;
|
||||
}
|
||||
|
||||
public void setState(String newState) {
|
||||
this.state = newState;
|
||||
}
|
||||
|
||||
public String getStateId() {
|
||||
return this.stateId;
|
||||
}
|
||||
|
||||
public void setStateId(String newStateId) {
|
||||
this.stateId = newStateId;
|
||||
}
|
||||
|
||||
public String getStateCode() {
|
||||
return this.stateCode;
|
||||
}
|
||||
|
||||
public void setStateCode(String newStateCode) {
|
||||
this.stateCode = newStateCode;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user