package com.gkhy.huataiFourierSpecialGasMonitor.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;
|
}
|