whyclxw
2025-06-12 a0dc821ac3c77d5be4a8b1d59e36312a5ee7f915
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.whyc.dto.Statistic;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class SticDischarge5Res {
    private String provice;
    private String city;
    private String country;
    private String stationName;
    private String battgroupName;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date testStartTime;
    private Float realCap;          //实际容量
    private Integer testTimelong;   //测试时长
    private Float testCap;          //测试容量
    private String stopReason;      //停止原因
    private String capperformance;     //电池性能
    private Integer disChargeType;     //1.已放电 2.未放电 不传全部
    private Integer testRecordCount;
    private String dischargeName;
}