liusuyi
2026-05-18 0b8c8d8986a35c3e36db1503125e2dff79d6d10e
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package com.ard.work.carousel.domain;
 
import com.ard.vtdu.api.domian.ArdVtdu;
import com.ard.work.api.domian.ArdChannel;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ard.common.core.annotation.Excel;
import com.ard.common.core.web.domain.BaseEntity;
 
import java.util.List;
 
/**
 * 视频轮播窗口对象 ard_carousel_window
 *
 * @author ruoyi
 * @date 2024-09-03
 */
public class ArdCarouselWindow extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    private String id;
 
    /**
     * 窗口名称
     */
    @Excel(name = "窗口名称")
    private String name;
 
    /**
     * 窗口位置
     */
    @Excel(name = "窗口位置")
    private Long position;
 
    /**
     * 轮播方案id
     */
    @Excel(name = "轮播方案id")
    private String planId;
 
    /**
     * 轮询时间间隔
     */
    @Excel(name = "轮询时间间隔")
    private Long carouselTime;
 
    /**
     * 用户ID
     */
    @Excel(name = "用户ID")
    private Long userId;
 
    /**
     * 部门ID
     */
    @Excel(name = "部门ID")
    private Long deptId;
 
    /**
     * 通道集合
     */
    List<ArdChannel> ArdChannels;
    /**
     * 通道流媒体集合
     */
    List<ArdVtdu> ArdVtdus;
 
    public List<ArdVtdu> getArdVtdus() {
        return ArdVtdus;
    }
 
    public void setArdVtdus(List<ArdVtdu> ardVtdus) {
        ArdVtdus = ardVtdus;
    }
 
    public List<ArdChannel> getArdChannels() {
        return ArdChannels;
    }
 
    public void setArdChannels(List<ArdChannel> ardChannels) {
        ArdChannels = ardChannels;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getId() {
        return id;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getName() {
        return name;
    }
 
    public void setPosition(Long position) {
        this.position = position;
    }
 
    public Long getPosition() {
        return position;
    }
 
    public void setPlanId(String planId) {
        this.planId = planId;
    }
 
    public String getPlanId() {
        return planId;
    }
 
    public void setCarouselTime(Long carouselTime) {
        this.carouselTime = carouselTime;
    }
 
    public Long getCarouselTime() {
        return carouselTime;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("name", getName())
                .append("position", getPosition())
                .append("planId", getPlanId())
                .append("carouselTime", getCarouselTime())
                .append("userId", getUserId())
                .append("deptId", getDeptId())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("remark", getRemark())
                .toString();
    }
}