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.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author xuzhongpei
|
* @since 2021-12-25
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName(schema = "db_ram_db",value = "tb_ld9_state")
|
@ApiModel(value="Ld9State对象", description="")
|
public class Ld9State implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "num", type = IdType.AUTO)
|
private Long num;
|
|
private Integer devId;
|
|
private String devIp;
|
|
private Date recordDatetime;
|
|
private String devVersion;
|
|
private Integer sysState;
|
|
private Float sysOnlineVol;
|
|
private Float sysGroupVol;
|
|
private Integer sysNowBattnum;
|
|
private Integer sysNowBattstate;
|
|
private Float sysNowBattvol;
|
|
private Float sysNowBattcurr;
|
|
private Float sysNowBattcap;
|
|
private Date sysNowTesttime;
|
|
private Integer sysNextBattnum;
|
|
private Integer sysNextBattstate;
|
|
private Float sysNextBattvol;
|
|
private Float sysNextBattcurr;
|
|
private Float sysNextBattcap;
|
|
private Date sysNextTesttime;
|
|
private Float sysTmp;
|
|
private Integer sysStopReason;
|
|
private Integer devCommcount;
|
|
private Integer devErrcommcount;
|
|
private Integer timelong;
|
|
private Integer monvolHightalarm;
|
|
private Integer monvolLoweralarm;
|
|
private Integer moncapAlarm;
|
|
private Integer montmpAlarm;
|
|
private Integer monresAlarm;
|
|
@TableField(exist = false)
|
private String note;
|
|
|
|
|
}
|