package com.ruoyi.common.pojo; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @TableName("attachment_table") public class AttachmentTable { @TableId(type = IdType.AUTO) private Integer id; @ApiModelProperty("其他表绑定id") private Integer subclassId; @ApiModelProperty("文件名称") private String fileName; @ApiModelProperty("文件类型") private String fileType; @ApiModelProperty("文件原名称") private String originalFileName; @ApiModelProperty("桶名") private String bucketName; @ApiModelProperty("所在模块名称") private String moduleName; @ApiModelProperty("其他表名") private String otherTableName; }