package com.ruoyi.project.tr.slideshowPic.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
|
/**
|
* 轮播图对象 tr_slideshow_pic
|
*
|
* @author wm
|
* @date 2020-07-18
|
*/
|
public class SlideshowPic extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 轮播图表id */
|
private Long slideshowPicId;
|
|
/** 轮播图描述 */
|
@Excel(name = "轮播图描述")
|
private String slideshowDescribe;
|
|
/** 图片地址url */
|
@Excel(name = "图片地址url")
|
private String picUrl;
|
|
public void setSlideshowPicId(Long slideshowPicId)
|
{
|
this.slideshowPicId = slideshowPicId;
|
}
|
|
public Long getSlideshowPicId()
|
{
|
return slideshowPicId;
|
}
|
public void setSlideshowDescribe(String slideshowDescribe)
|
{
|
this.slideshowDescribe = slideshowDescribe;
|
}
|
|
public String getSlideshowDescribe()
|
{
|
return slideshowDescribe;
|
}
|
public void setPicUrl(String picUrl)
|
{
|
this.picUrl = picUrl;
|
}
|
|
public String getPicUrl()
|
{
|
return picUrl;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("slideshowPicId", getSlideshowPicId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("slideshowDescribe", getSlideshowDescribe())
|
.append("picUrl", getPicUrl())
|
.toString();
|
}
|
}
|