package com.gkhy.fourierSpecialGasMonitor.entity;
|
|
import lombok.Data;
|
|
import javax.persistence.*;
|
import java.time.LocalDateTime;
|
|
/**
|
* @author Mr.huang
|
* @decription
|
* @date 2023/8/9 14:29
|
*/
|
@Entity
|
@Table(name = "gas_threshold")
|
@Data
|
public class GasThreshold {
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Integer id;
|
|
private String name;
|
|
private int threshold;
|
|
private String createdby;
|
|
private LocalDateTime gmtCreate;
|
|
private String lastmodifiedby;
|
|
private LocalDateTime gmtModified;
|
}
|