188 lines
3.6 KiB
Java
188 lines
3.6 KiB
Java
package com.ruoyi.system.domain;
|
||
|
||
import java.util.Date;
|
||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
import com.ruoyi.common.annotation.Excel;
|
||
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
||
/**
|
||
* 内容信息对象 content
|
||
*
|
||
* @author ruoyi
|
||
* @date 2025-05-15
|
||
*/
|
||
public class Content extends BaseEntity
|
||
{
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/** $column.columnComment */
|
||
private Long id;
|
||
|
||
/** 分类 */
|
||
@Excel(name = "分类")
|
||
private Long type;
|
||
|
||
/** 标题 */
|
||
@Excel(name = "标题")
|
||
private String title;
|
||
|
||
/** 内容 */
|
||
@Excel(name = "内容")
|
||
private String content;
|
||
|
||
/** 图片 */
|
||
@Excel(name = "图片")
|
||
private String image;
|
||
|
||
/** 链接地址 */
|
||
@Excel(name = "链接地址")
|
||
private String link;
|
||
|
||
/** 排序 */
|
||
@Excel(name = "排序")
|
||
private Long sort;
|
||
|
||
/** 1:列表显示 2:单页显示 */
|
||
private Integer status;
|
||
|
||
/** $column.columnComment */
|
||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
private Date createdAt;
|
||
|
||
/** $column.columnComment */
|
||
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
private Date updatedAt;
|
||
|
||
/** $column.columnComment */
|
||
private Date deletedAt;
|
||
|
||
public void setId(Long id)
|
||
{
|
||
this.id = id;
|
||
}
|
||
|
||
public Long getId()
|
||
{
|
||
return id;
|
||
}
|
||
|
||
public void setType(Long type)
|
||
{
|
||
this.type = type;
|
||
}
|
||
|
||
public Long getType()
|
||
{
|
||
return type;
|
||
}
|
||
|
||
public void setTitle(String title)
|
||
{
|
||
this.title = title;
|
||
}
|
||
|
||
public String getTitle()
|
||
{
|
||
return title;
|
||
}
|
||
|
||
public void setContent(String content)
|
||
{
|
||
this.content = content;
|
||
}
|
||
|
||
public String getContent()
|
||
{
|
||
return content;
|
||
}
|
||
|
||
public void setImage(String image)
|
||
{
|
||
this.image = image;
|
||
}
|
||
|
||
public String getImage()
|
||
{
|
||
return image;
|
||
}
|
||
|
||
public void setLink(String link)
|
||
{
|
||
this.link = link;
|
||
}
|
||
|
||
public String getLink()
|
||
{
|
||
return link;
|
||
}
|
||
|
||
public void setSort(Long sort)
|
||
{
|
||
this.sort = sort;
|
||
}
|
||
|
||
public Long getSort()
|
||
{
|
||
return sort;
|
||
}
|
||
|
||
public void setStatus(Integer status)
|
||
{
|
||
this.status = status;
|
||
}
|
||
|
||
public Integer getStatus()
|
||
{
|
||
return status;
|
||
}
|
||
|
||
public void setCreatedAt(Date createdAt)
|
||
{
|
||
this.createdAt = createdAt;
|
||
}
|
||
|
||
public Date getCreatedAt()
|
||
{
|
||
return createdAt;
|
||
}
|
||
|
||
public void setUpdatedAt(Date updatedAt)
|
||
{
|
||
this.updatedAt = updatedAt;
|
||
}
|
||
|
||
public Date getUpdatedAt()
|
||
{
|
||
return updatedAt;
|
||
}
|
||
|
||
public void setDeletedAt(Date deletedAt)
|
||
{
|
||
this.deletedAt = deletedAt;
|
||
}
|
||
|
||
public Date getDeletedAt()
|
||
{
|
||
return deletedAt;
|
||
}
|
||
|
||
@Override
|
||
public String toString() {
|
||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
.append("id", getId())
|
||
.append("type", getType())
|
||
.append("title", getTitle())
|
||
.append("content", getContent())
|
||
.append("image", getImage())
|
||
.append("link", getLink())
|
||
.append("sort", getSort())
|
||
.append("status", getStatus())
|
||
.append("createdAt", getCreatedAt())
|
||
.append("updatedAt", getUpdatedAt())
|
||
.append("deletedAt", getDeletedAt())
|
||
.toString();
|
||
}
|
||
}
|