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();
|
}
|
}
|