sgj
2026-03-10 ea4b6749adbd7dae4ccff32f9f7bd5fcdc0ab3b2
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
package com.fzzy.igds.app.v1.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fzzy.igds.constant.WarnStatus;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import java.util.Date;
 
/**
 * @Author: YYC
 * @Description:
 * @DateTime: 2026-2-11 14:00
 **/
@Data
public class PEventInfoDto {
 
    private String id;
 
    private String deptId;
    private String deptName;
 
    private String depotId;
 
    private String serId;
    private String name;
 
    private String bizType;
 
    private String type;
 
    private String level;
 
    private String status;
 
    private String info;
 
    private Date time;
 
    private String noticeResult;
 
    private String noticeUser;
 
    private String completeUser;
 
    private Date completeTime;
 
    private String tags ;
 
    private String remark;
 
    private String imgName;
 
    private String companyId;
 
    private String createBy;
 
    private Date createTime;
 
    private String updateBy;
 
    private Date updateTime;
}