黄磊的项目,分享文件
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.
 
 
 
 
 

123 lines
2.6 KiB

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;
/**
* 【请填写功能名称】对象 b_file
*
* @author ruoyi
* @date 2022-03-14
*/
public class BFile extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private Long id;
/** 视频名称 */
@Excel(name = "视频名称")
private String videoName;
/** 备注 */
@Excel(name = "备注")
private String memo;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private Date gmtCreate;
/** 文件id */
@Excel(name = "文件id")
private String uuid;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private String percent;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private Long done;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setVideoName(String videoName)
{
this.videoName = videoName;
}
public String getVideoName()
{
return videoName;
}
public void setMemo(String memo)
{
this.memo = memo;
}
public String getMemo()
{
return memo;
}
public void setGmtCreate(Date gmtCreate)
{
this.gmtCreate = gmtCreate;
}
public Date getGmtCreate()
{
return gmtCreate;
}
public void setUuid(String uuid)
{
this.uuid = uuid;
}
public String getUuid()
{
return uuid;
}
public void setPercent(String percent)
{
this.percent = percent;
}
public String getPercent()
{
return percent;
}
public void setDone(Long done)
{
this.done = done;
}
public Long getDone()
{
return done;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("videoName", getVideoName())
.append("memo", getMemo())
.append("gmtCreate", getGmtCreate())
.append("uuid", getUuid())
.append("percent", getPercent())
.append("done", getDone())
.toString();
}
}