whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.whyc.dto.result;
 
import lombok.Data;
import lombok.ToString;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@ToString
public class GroupTestCapRes implements Serializable {
    private Date testStartTime;
    private String stationName1;
    private String stationName2;
    private String stationName3;
    private String stationName5;
    private int countNum;
    private float sumNum;
    private String testCaps;
    private int yearTime;
    private String stationId;
    private Double testCap;
}