lxp
2025-03-12 10d6587ec3f5c4779f40bcc1afe54d441db68711
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
}