17 lines
381 B
Java
17 lines
381 B
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmOrgCalMstQVO extends BaseQueryVO implements Serializable {
|
|
private String calendarType;
|
|
|
|
public String getCalendarType() {
|
|
return this.calendarType;
|
|
}
|
|
|
|
public void setCalendarType(String newCalendarType) {
|
|
this.calendarType = newCalendarType;
|
|
}
|
|
}
|