package com.iailab.module.oss.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2023年12月26日 10:41:00
|
*/
|
@Data
|
@TableName("t_oss_file")
|
public class OssFileEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/**
|
* 业务ID
|
*/
|
private String businessId;
|
|
/**
|
* 类型(推荐格式:实体名_上传类型,例如,意见反馈图片:appComment_image)
|
*/
|
private String type;
|
|
/**
|
* 文件名称
|
*/
|
private String fileName;
|
|
/**
|
* 文件后缀
|
*/
|
private String filePostfix;
|
|
/**
|
* 文件地址
|
*/
|
private String url;
|
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
|
}
|