1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| package com.ard.work.carousel.domain;
|
| import lombok.Data;
| import org.apache.commons.lang3.builder.ToStringBuilder;
| import org.apache.commons.lang3.builder.ToStringStyle;
|
| /**
| * 窗口通道关联 ard_carousel_window_channel
| *
| * @author ard
| */
| @Data
| public class ArdCarouselWindowChannel {
| /**
| * 窗口ID
| */
| private String windowId;
|
| /**
| * 相机ID
| */
| private String cameraId;
| /**
| * 通道号
| */
| private Integer chanNo;
|
|
| }
|
|