houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.device.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年06月29日
 */
@Data
@TableName("t_device_health_evaluate")
public class DeviceHealthEvaluateEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.ASSIGN_UUID)
    private String id;
    private String devId;
    private String devNo;
    private String devName;
    private String modelCode;
    private String modelUrl;
    private String healthLevel;
    private BigDecimal healthScore;
    private Integer abnormalCount;
    private String reportId;
    private Date reportDate;
    private String reportContent;
    private Integer isPushed;
    private Integer isEnable;
 
    /**
     * 创建人
     */
    private Long creator;
 
    /**
     * 创建时间
     */
    private Date createDate;
 
    /**
     * 修改人
     */
    private Long updater;
 
    /**
     * 修改时间
     */
    private Date updateDate;
}