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 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")
|
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;
|
|
|
|
|
}
|