whyczh
2022-01-10 c072ac8023335ba4f20218e9640abaa3161b0f78
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.whyc.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * 电池组测试数据 传输类
 */
public class BattTestDataDTO {
 
    /**省*/
    private String stationName1;
    private Integer stationId;
    private String battGroupName;
    /**
     * 电池测试类型
     */
    private Integer testType;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date recordStartTime;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date recordEndTime;
    /**
     * 放电类型
     */
    private Integer dischargeType;
 
    private Long uId;
 
    public String getStationName1() {
        return stationName1;
    }
 
    public void setStationName1(String stationName1) {
        this.stationName1 = stationName1;
    }
 
    public Integer getStationId() {
        return stationId;
    }
 
    public void setStationId(Integer stationId) {
        this.stationId = stationId;
    }
 
    public String getBattGroupName() {
        return battGroupName;
    }
 
    public void setBattGroupName(String battGroupName) {
        this.battGroupName = battGroupName;
    }
 
    public Integer getTestType() {
        return testType;
    }
 
    public void setTestType(Integer testType) {
        this.testType = testType;
    }
 
    public Date getRecordStartTime() {
        return recordStartTime;
    }
 
    public void setRecordStartTime(Date recordStartTime) {
        this.recordStartTime = recordStartTime;
    }
 
    public Date getRecordEndTime() {
        return recordEndTime;
    }
 
    public void setRecordEndTime(Date recordEndTime) {
        this.recordEndTime = recordEndTime;
    }
 
    public Integer getDischargeType() {
        return dischargeType;
    }
 
    public void setDischargeType(Integer dischargeType) {
        this.dischargeType = dischargeType;
    }
 
    public Long getUId() {
        return uId;
    }
 
    public void setUId(Long uId) {
        this.uId = uId;
    }
}