| | |
| | | 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 io.swagger.annotations.ApiModelProperty; |
| | | import lombok.*; |
| | | import lombok.experimental.Accessors; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty(value = "电池组测试数据集合") |
| | | private List<BattgroupData> battDataList; |
| | | |
| | | @ApiModelProperty(value = "测试时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | private Date testTime; |
| | | |
| | | @ApiModelProperty(value = "电压均一性") |
| | | @TableField(exist = false) |
| | | private Float sdBasebv; |
| | | |
| | | @ApiModelProperty(value = "内阻均一性") |
| | | @TableField(exist = false) |
| | | private Float sdBasebr; |
| | | |
| | | @ApiModelProperty(value = "电导均一性") |
| | | @TableField(exist = false) |
| | | private Float sdBasebs; |
| | | |
| | | @ApiModelProperty(value = "连接条均一性") |
| | | @TableField(exist = false) |
| | | private Float sdBasecr; |
| | | |
| | | @ApiModelProperty(value = "内阻评价") |
| | | @TableField(exist = false) |
| | | private String brJudge; |
| | | |
| | | public BattgroupInfo() { |
| | | battDataList=new ArrayList<>(); |
| | | } |