package com.ruoyi.system.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;
|
|
/**
|
* 【请填写功能名称】对象 update_file_name
|
*
|
* @author ruoyi
|
* @date 2023-03-23
|
*/
|
public class UpdateFileName extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private Long id;
|
|
/** 文件名称 */
|
@Excel(name = "文件名称")
|
private String fileName;
|
|
/** 文件校验 */
|
@Excel(name = "文件校验")
|
private String check;
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setFileName(String fileName)
|
{
|
this.fileName = fileName;
|
}
|
|
public String getFileName()
|
{
|
return fileName;
|
}
|
public void setCheck(String check)
|
{
|
this.check = check;
|
}
|
|
public String getCheck()
|
{
|
return check;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("fileName", getFileName())
|
.append("check", getCheck())
|
.toString();
|
}
|
}
|