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
| package com.gkhy.fourierSpecialGasMonitor.entity;
|
| import lombok.Data;
|
| import javax.persistence.*;
| import java.time.LocalDateTime;
|
| /**
| * @author Mr.huang
| * @decription
| * @date 2023/8/8 15:09
| */
| @Entity
| @Table(name = "device_exception_log")
| @Data
| public class DeviceExceptionLog {
|
| @Id
| @GeneratedValue(strategy = GenerationType.IDENTITY)
| private Integer id;
|
| private String content;
|
| private LocalDateTime time;
|
| private String execDesc;
|
| private Integer delFlag;
| }
|
|