1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| 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;
| }
|
| }
|
|