package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author lxw
|
* @since 2024-12-04
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName(schema = "db_power_rt",value = "tb_power_real_rt3")
|
@ApiModel(value="PowerRealRt3对象", description="")
|
public class PowerRealRt3 implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value = "自增主键")
|
@TableId(value = "num", type = IdType.AUTO)
|
private Long num;
|
|
private Integer powerId;
|
|
@ApiModelProperty(value = "记录时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date recordTime;
|
|
private Float charOutVol;
|
|
private Float charOutCurr;
|
|
private Float ac1Vola;
|
|
private Float ac1Volb;
|
|
private Float ac1Volc;
|
|
private Float ac2Vola;
|
|
private Float ac2Volb;
|
|
private Float ac2Volc;
|
|
private Integer charJunFloat;
|
|
private Integer charOpenClose;
|
|
private Integer charModelError;
|
|
private Integer charOutOvervol;
|
|
private Integer charOutLessvol;
|
|
private Integer acin3Qf31;
|
|
private Integer acin3Qf32;
|
|
private Integer charOutBatt1Dk31;
|
|
private Integer charOutBatt2Dk31;
|
|
private Integer ac1Fault;
|
|
private Integer ac2Fault;
|
|
private Integer mainSwitchFault;
|
|
private Integer thunderFault;
|
|
|
}
|