package com.ard.work.dataviz.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;
|
|
/**
|
* 数据可视化管理对象 ard_data_visual
|
*
|
* @author ruoyi
|
* @date 2024-09-28
|
*/
|
public class ArdDataVisual extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private String id;
|
|
/** 名称 */
|
@Excel(name = "名称")
|
private String name;
|
|
/** url */
|
@Excel(name = "url")
|
private String url;
|
|
/** 用户id */
|
@Excel(name = "用户id")
|
private Long userId;
|
|
/** 部门id */
|
@Excel(name = "部门id")
|
private Long deptId;
|
|
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 setUrl(String url)
|
{
|
this.url = url;
|
}
|
|
public String getUrl()
|
{
|
return url;
|
}
|
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("url", getUrl())
|
.append("userId", getUserId())
|
.append("deptId", getDeptId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.toString();
|
}
|
}
|