whycxzp
2025-06-11 02ccfc21d5d4f767bbd92ecda89cdfcc3283728c
src/main/java/com/whyc/pojo/db_batt_testdata/BatttestdataInf.java
@@ -1,12 +1,15 @@
package com.whyc.pojo.db_batt_testdata;
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 io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
import java.io.Serializable;
@@ -23,6 +26,8 @@
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@AllArgsConstructor
@NoArgsConstructor
@TableName(schema = "db_batt_testdata",value ="tb_batttestdata_inf")
@ApiModel(value="BatttestdataInf对象", description="电池组历史测试数据总表")
public class BatttestdataInf implements Serializable {
@@ -71,6 +76,10 @@
    @ApiModelProperty(value = "测试停止原因")
    private Integer testStoptype;
    @ApiModelProperty(value = "测试停止原因")
    @TableField(exist = false)
    private String testStoptypeReason;
    @ApiModelProperty(value = "在线电压")
    private Float onlineVol;
@@ -104,5 +113,40 @@
    @ApiModelProperty(value = "山西61850监测放电数据标识【0:监测放电;1停电放电】")
    private Integer testDatatype;
    @TableField(exist = false)
    private String stationName;
    @TableField(exist = false)
    private Integer stationId;
    @TableField(exist = false)
    private Integer powerId;
    @TableField(exist = false)
    private Integer devId;
    @TableField(exist = false)
    private String battgroupName;
    @TableField(exist = false)
    private String provice;
    @TableField(exist = false)
    private String city;
    @TableField(exist = false)
    private String country;
    @TableField(exist = false)
    private String fullName;
    @TableField(exist = false)
    private Float restCap;
    @TableField(exist = false)
    private Float restTime;
    @TableField(exist = false)
    private Float realCap;
    @TableField(exist = false)
    private String precentCap;
}