zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package org.jeecg.modules.desk.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.jeecg.common.aspect.annotation.Dict;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
import java.io.Serializable;
 
/**
 * (DeskFile)实体类
 *
 * @author makejava
 * @since 2022-05-18 13:38:49
 */
@Data
public class DeskFile extends JeecgEntity implements Serializable {
    private static final long serialVersionUID = 483300565020239873L;
 
    @Dict(dictTable ="desk_file",dicText = "name",dicCode = "id")
    private String pid;
    /**
     * 1-文件夹 2-文件
     */
    private Integer type;
    /**
     * 文件名
     */
    private String fileName;
    /**
     * 文件路径
     */
    private String filePath;
    /**
     * 文件大小
     */
    private Integer fileSize;
    /**
     * 文件类型
     */
    private String fileType;
    /**
     * 序号
     */
    private Integer orderNo;
 
 
    private Integer del;
 
 
    
    private String name;
    private String tag;
 
 
 
 
    /**
     * 文件路径列表
     */
    @TableField(exist = false)
    private String fileList;
 
 
 
}