package com.gkhy.safePlatform.account.model.bo; import com.gkhy.safePlatform.account.entity.schedule.GroupStrategyTimeTableInfo; import com.gkhy.safePlatform.account.entity.schedule.GroupStrategyUserTimeTableInfo; import java.util.List; public class ScheduleTimeTableBO { private List timeTableInfo; private List userTimeTableInfos; public List getTimeTableInfo() { return timeTableInfo; } public void setTimeTableInfo(List timeTableInfo) { this.timeTableInfo = timeTableInfo; } public List getUserTimeTableInfos() { return userTimeTableInfos; } public void setUserTimeTableInfos(List userTimeTableInfos) { this.userTimeTableInfos = userTimeTableInfos; } }