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
30
31
| package com.gkhy.testFourierSpecialGasMonitor.entity;
|
| import lombok.Data;
|
| import javax.persistence.*;
|
| /**
| * @author Mr.huang
| * @decription
| * @date 2023/8/9 16:34
| */
| @Entity
| @Table(name = "gas_warn_log_sms_user")
| @Data
| public class GasWarnLogSmsUser {
|
| @Id
| @GeneratedValue(strategy = GenerationType.IDENTITY)
| private Long id;
|
| private Long warnLogId;
|
| private Long userId;
|
| private String name;
|
| private String realName;
|
| private String phone;
|
| }
|
|