leutu
2024-05-08 7922905e4987789b636abdce1a240f4cee7c971b
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
package com.terra.lfdcexp.entity;
 
import lombok.Data;
 
/**
 *  "alarminfo": [
 *                                    {
 *                        "userId": "09484ad1452e482b8b52f0ad7c7e96bd",
 *                        "userName": "刘晶",
 *                        "wtId": "shenyazhan1",
 *                       "name": "2号机组",
 *                       "fence_type": "fixed",
 *     "startTime": "2020-12-17 14:29:07",
 *                        "status": "in"
 *     }]
 * }
 */
@Data
public class AlertInfo {
    private String userId;
    private String userName ;
    private String wtId ;
    private String name ;
    private String fence_type ;
    private String startTime ;
    private String status ;
}