whyclxw
1 天以前 add5c816a5281cf6b1df4a0988e8b3a0c2b59bee
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
26
27
28
29
30
package com.whyc.dto.Statistic;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.whyc.pojo.db_batt_testdata.BatttestdataInf;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
@Data
public class SticDischarge6Res {
    private String provice;
    private String city;
    private String country;
    private String stationName;
    private String battgroupName;
    private Float monvolstd;
    private Float moncapstd;
    private Float moncount;
    private String product;
    private Integer errorNum;
    private List<String> stopList;
    private Integer testRecordCount;
    private String dischargeName;
    private Integer stopReasonType;   //0全部,1符合筛选条件的放电记录
    private Integer stationId;
    private Integer powerId;
    private Integer battgroupId;
    private Integer devId;
}