Lius
2025-01-09 2c24f787f28e85af3a7f89e4277063e9a2523909
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
package org.jeecg.modules.system.vo;
 
import lombok.Data;
 
/**
 * @author clown
 * * @date 2023/12/19
 */
@Data
public class SysLogTypeObjectDto {
 
    /**
     * 系统名称
     */
    private String systemName = "MDC";
    /**
     * 时间
     */
    private String dateTime;
    /**
     * 地点
     */
    private String location = "成发工业园";
    /**
     * 类型  Info/error
     */
    private String types = "info";
    /**
     * 文件序号
     */
    private String fileNum;
    /**
     * 文件名
     */
    private String fileName;
    /**
     * 文件大小
     */
    private String fileSize;
    /**
     * 业务系统ip
     */
    private String address = "10.118.10.62";
    /**
     * 文件摘要
     */
    private String abstract1;
    /**
     * 源地址
     */
    private String sourceAddress;
    /**
     * 目的地址
     */
    private String destination;
    /**
     * 结果
     */
    private String result;
 
}