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;
|
}
|