kongdeqiang
2023-07-03 3ef994024caff28a57cb3812f222030b3cf71d30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.boying.entity;
 
import lombok.Data;
 
import java.time.LocalDate;
import java.util.Date;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName WarnLog.java
 * @Description TODO
 * @createTime 2023年06月25日 14:27:00
 */
@Data
public class WarnLog{
    private String id;
    private LocalDate warnDate;
    private Integer type; //1.主机  2.数通设备  3.ups   4.空调   5.温湿度   6、漏水  7.其他
    private String name;
    private String content;
}