package com.artfess.uc.model; /** * @author qiuxd * @company 阿特菲斯信息技术有限公司 * @email qiuxd@jee-soft.cn * @date */ public class DefaultHoliday { private Long startTime; private Long endTime; public Long getStartTime() { return startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public Long getEndTime() { return endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } }