fg电池监控平台的达梦数据库版本
whycxzp
2024-11-13 8dc414d196df2bc4891e0c84333871f6b7fc8a7e
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;
 
 
 
 
}