You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
2.6 KiB
127 lines
2.6 KiB
2 years ago
|
package com.ruoyi.tcZz.domain;
|
||
|
|
||
|
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;
|
||
|
|
||
|
/**
|
||
|
* 舆情报告对象 tc_yqbg
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2023-10-12
|
||
|
*/
|
||
|
public class TcYqbg extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
private Long id;
|
||
|
|
||
|
/** 区域id */
|
||
|
@Excel(name = "区域id")
|
||
|
private String areaId;
|
||
|
|
||
|
/** 启用/禁用 */
|
||
|
@Excel(name = "启用/禁用")
|
||
|
private Long isStatus;
|
||
|
|
||
|
/** 类型 */
|
||
|
@Excel(name = "类型")
|
||
|
private Long type;
|
||
|
|
||
|
/** 标题名称 */
|
||
|
@Excel(name = "标题名称")
|
||
|
private String title;
|
||
|
|
||
|
/** 文件名称 */
|
||
|
@Excel(name = "文件名称")
|
||
|
private String fileName;
|
||
|
|
||
|
/** 文件路径(完整路径) */
|
||
|
@Excel(name = "文件路径(完整路径)")
|
||
|
private String fileUrl;
|
||
|
|
||
|
public void setId(Long id)
|
||
|
{
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public Long getId()
|
||
|
{
|
||
|
return id;
|
||
|
}
|
||
|
public void setAreaId(String areaId)
|
||
|
{
|
||
|
this.areaId = areaId;
|
||
|
}
|
||
|
|
||
|
public String getAreaId()
|
||
|
{
|
||
|
return areaId;
|
||
|
}
|
||
|
public void setIsStatus(Long isStatus)
|
||
|
{
|
||
|
this.isStatus = isStatus;
|
||
|
}
|
||
|
|
||
|
public Long getIsStatus()
|
||
|
{
|
||
|
return isStatus;
|
||
|
}
|
||
|
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 setFileName(String fileName)
|
||
|
{
|
||
|
this.fileName = fileName;
|
||
|
}
|
||
|
|
||
|
public String getFileName()
|
||
|
{
|
||
|
return fileName;
|
||
|
}
|
||
|
public void setFileUrl(String fileUrl)
|
||
|
{
|
||
|
this.fileUrl = fileUrl;
|
||
|
}
|
||
|
|
||
|
public String getFileUrl()
|
||
|
{
|
||
|
return fileUrl;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
.append("id", getId())
|
||
|
.append("areaId", getAreaId())
|
||
|
.append("isStatus", getIsStatus())
|
||
|
.append("type", getType())
|
||
|
.append("title", getTitle())
|
||
|
.append("fileName", getFileName())
|
||
|
.append("fileUrl", getFileUrl())
|
||
|
.append("createBy", getCreateBy())
|
||
|
.append("createTime", getCreateTime())
|
||
|
.append("updateBy", getUpdateBy())
|
||
|
.append("updateTime", getUpdateTime())
|
||
|
.append("remark", getRemark())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|