package com.gkhy.safePlatform.account.model.bo; import java.util.Set; public class ScheduleRuleBO { private Set weekRule; private Set monthRule; private Set dayRule; public Set getWeekRule() { return weekRule; } public void setWeekRule(Set weekRule) { this.weekRule = weekRule; } public Set getMonthRule() { return monthRule; } public void setMonthRule(Set monthRule) { this.monthRule = monthRule; } public Set getDayRule() { return dayRule; } public void setDayRule(Set dayRule) { this.dayRule = dayRule; } }