package com.zy.acs.manager.core.domain; import lombok.Data; /** * Created by vincent on 11/1/2024 */ @Data public class ReservedTimeWindow { private String twKey; private TimeWindow timeWindow; public ReservedTimeWindow() { } public ReservedTimeWindow(String twKey, TimeWindow timeWindow) { this.twKey = twKey; this.timeWindow = timeWindow; } }