99 lines
2.1 KiB
99 lines
2.1 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_sdtb
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2023-10-12
|
||
|
*/
|
||
|
public class TcSdtb extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
private Long id;
|
||
|
|
||
|
/** 属地名称 */
|
||
|
@Excel(name = "属地名称")
|
||
|
private Long area;
|
||
|
|
||
|
/** 启用/禁用 */
|
||
|
@Excel(name = "启用/禁用")
|
||
|
private Long isStatus;
|
||
|
|
||
|
/** 文件名称 */
|
||
|
@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 setArea(Long area)
|
||
|
{
|
||
|
this.area = area;
|
||
|
}
|
||
|
|
||
|
public Long getArea()
|
||
|
{
|
||
|
return area;
|
||
|
}
|
||
|
public void setIsStatus(Long isStatus)
|
||
|
{
|
||
|
this.isStatus = isStatus;
|
||
|
}
|
||
|
|
||
|
public Long getIsStatus()
|
||
|
{
|
||
|
return isStatus;
|
||
|
}
|
||
|
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("area", getArea())
|
||
|
.append("isStatus", getIsStatus())
|
||
|
.append("fileName", getFileName())
|
||
|
.append("fileUrl", getFileUrl())
|
||
|
.append("createBy", getCreateBy())
|
||
|
.append("createTime", getCreateTime())
|
||
|
.append("updateBy", getUpdateBy())
|
||
|
.append("updateTime", getUpdateTime())
|
||
|
.append("remark", getRemark())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|