67 lines
1.2 KiB
Java
67 lines
1.2 KiB
Java
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;
|
|
}
|
|
}
|