xiangpei
8 天以前 56224037cde5a381dbdce941bfc3a4f555584e3b
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
37
38
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.Data;
 
/**
 * 文件信息
 *
 * @author xp
 * @since 2025-05-19
 */
@Data
@TableName("lmk_file")
public class LmkFile extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("file_key")
    /** 文件唯一标识 */
    private String fileKey;
 
    @TableField("file_type")
    /** 文件类型 */
    private String fileType;
 
    @TableField("file_size")
    /** 文件大小 */
    private Long fileSize;
 
    @TableField("original_filename")
    /** 文件原始名 */
    private String originalFileName;
 
 
}