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 lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Scanner;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author xuzhongpei
|
* @since 2022-01-06
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName(schema = "db_ld9_testdata",value = "tb_ld9testdata_inf")
|
@ApiModel(value="Ld9testdataInf对象", description="")
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
public class Ld9testdataInf implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "num", type = IdType.AUTO)
|
private Long num;
|
|
@TableField("BattGroupId")
|
private Integer battGroupId;
|
|
private Integer testRecordCount;
|
|
private Integer testRecordCountEx;
|
|
private Integer testType;
|
|
private Integer recordTimeInterval;
|
|
private Integer recordNum;
|
|
private Date testStarttime;
|
|
private Date testStarttimeEx;
|
|
private Date recordTime;
|
|
private Integer testTimelong;
|
|
private Integer testStoptype;
|
|
private Integer testStopreason;
|
|
private Float groupVol;
|
|
private Float testCurr;
|
|
private Float testCap;
|
|
private Integer monNum;
|
|
private Float monVol;
|
|
private Integer maxMonnum;
|
|
private Float maxMonvol;
|
|
private Integer minMonnum;
|
|
private Float minMonvol;
|
|
@TableField(exist = false)
|
private List Ld9testdata;
|
|
@TableField(exist = false)
|
private HashMap<String,String> mapPic;
|
|
}
|