“djh”
2024-12-04 d1549b8445c65a6775cf1ba093f5040ace0f87e7
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
package com.gkhy.huataiFourierSpecialGasMonitor.domain.attachment.dto.resp;
 
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2023/5/7
 * @time: 15:10
 */
@Data
public class AttachmentDomainDTO {
 
    private Long id;
    //文件标识
    private String fileKey;
    //文件本地址
    private String filePath;
    //文件访问路径
    private String fileUrl;
    //文件名称
    private String fileName;
    //文件后缀
    private String fileSuffix;
    //文件描述
    private String fileDesc;
    //文件大小
    private Long fileSize;
    //文件类型
    private String fileType;
    //模块
    private String module;
    //删除标识 0-未删除,1-删除
    private Integer delFlag;
    //创建时间
    private LocalDateTime createTime;
    //创建人id
    private Long createUid;
    //创建人姓名
    private String createUname;
    //修改时间
    private LocalDateTime updateTime;
    //修改人id
    private Long updateUid;
    //修改人姓名
    private String updateUname;
}