package com.gkhy.testFourierSpecialGasMonitor.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_warn_user")
|
@Data
|
public class GasWarnUser {
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Long id;
|
|
private Long userId;
|
|
private String name;
|
|
private String realName;
|
|
private String phone;
|
|
private Byte status;
|
|
private String createdby;
|
|
private LocalDateTime gmtCreate;
|
|
private String lastmodifiedby;
|
|
private LocalDateTime gmtModified;
|
}
|