liusuyi
2026-05-30 f4f4fc53260eb67483dce406a963628273786a61
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
package com.ard.work.carousel.domain;
 
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_plans
 * 
 * @author ruoyi
 * @date 2024-09-03
 */
public class ArdCarouselPlans extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private String id;
 
    /** 方案名称 */
    @Excel(name = "方案名称")
    private String name;
 
    /** 类型 */
    @Excel(name = "类型")
    private String type;
 
    /** 用户ID */
    @Excel(name = "用户ID")
    private Long userId;
 
    /** 部门ID */
    @Excel(name = "部门ID")
    private Long deptId;
    /** 轮播窗口集合 */
    List<ArdCarouselWindow> ArdCarouselWindows;
 
 
    public List<ArdCarouselWindow> getArdCarouselWindows() {
        return ArdCarouselWindows;
    }
 
    public void setArdCarouselWindows(List<ArdCarouselWindow> ardCarouselWindows) {
        ArdCarouselWindows = ardCarouselWindows;
    }
 
    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 setType(String type) 
    {
        this.type = type;
    }
 
    public String getType() 
    {
        return type;
    }
    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("type", getType())
            .append("userId", getUserId())
            .append("deptId", getDeptId())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .toString();
    }
}