whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
32
33
34
35
36
37
38
39
40
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.Date;
@Data
@ApiModel(value = "btsStateChangeInf",description = "事件信息")
@TableName(schema = "db_batt_history",value = "tb_btsstaechange_inf")
@JsonIgnoreProperties(ignoreUnknown = true)
public class BtsStateChangeInf {
    @TableId(type = IdType.AUTO)
    private Integer num;
    private Integer devId;
    private Date recordTime;
    @TableField(exist = false)
    private Date recordTime1;
    private Integer lastState;
    private Integer nowState;
    private Integer eventType;
    private String note;
    @TableField(exist = false)
    private String stationName;
 
    @TableField(exist = false)
    private String province;
    @TableField(exist = false)
    private String city;
    @TableField(exist = false)
    private String county;
 
 
 
 
}